nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1From c6ac05c96b7908ccd35f3908fc0f13650b0583c0 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Ertugrul=20S=C3=B6ylemez?= <esz@posteo.de>
3Date: Sat, 3 Feb 2018 17:08:54 +0100
4Subject: [PATCH] Remove -Werror
5
6---
7 Makefile | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/Makefile b/Makefile
11index bbe2c75..3357d2d 100644
12--- a/Makefile
13+++ b/Makefile
14@@ -4,7 +4,7 @@ EXE=bcc
15 BUILD_DIR=build
16 CC=gcc
17 INCLUDE=-Isrc -I src/parse
18-OPTIONS=-Wall -Werror -Wno-unused -std=c99 -pedantic -Wstrict-aliasing \
19+OPTIONS=-Wall -Wno-unused -std=c99 -pedantic -Wstrict-aliasing \
20 -Wstrict-aliasing=2 -Wmissing-field-initializers -D_BSD_SOURCE \
21 -D_DEFAULT_SOURCE $(INCLUDE)
22 VERSION_FILE=$(BUILD_DIR)/version.c
23--
242.15.1
25