aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Williams <codehelp@debian.org>2017-05-24 11:59:38 +0100
committerNeil Williams <codehelp@debian.org>2017-05-24 11:59:38 +0100
commit4fc472ae3924a02da0a68c8d64adb05d713bd9a0 (patch)
tree96754debc9330e6d8d49565a37b3043d4a26eb13
parent71804e04975e0bb9c0e8bc5d629f7e34559e2c9d (diff)
remove -Werror and -pedantic flags
-rw-r--r--arm-probe/Makefile.am2
-rw-r--r--libarmep/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/arm-probe/Makefile.am b/arm-probe/Makefile.am
index 4d19416..e4e38c3 100644
--- a/arm-probe/Makefile.am
+++ b/arm-probe/Makefile.am
@@ -1,6 +1,6 @@
bin_PROGRAMS=arm-probe
arm_probe_SOURCES=arm-probe.c
-arm_probe_CFLAGS=-fPIC -Wall -Werror -std=gnu99 -pedantic -pthread -D_FORTIFY_SOURCE=2 -fstack-protector
+arm_probe_CFLAGS=-fPIC -Wall -std=gnu99 -pthread -D_FORTIFY_SOURCE=2 -fstack-protector
arm_probe_LDFLAGS=-fPIC -pthread
arm_probe_LDADD=-L../libarmep -larmep
diff --git a/libarmep/Makefile.am b/libarmep/Makefile.am
index 79dc801..d033325 100644
--- a/libarmep/Makefile.am
+++ b/libarmep/Makefile.am
@@ -10,7 +10,7 @@ dist_libarmep_la_SOURCES=sample.c \
libarmep.h \
aepd-interface.h
-libarmep_la_CFLAGS=-Wall -Werror -std=gnu99 -pedantic -pthread -D_FORTIFY_SOURCE=2 -fstack-protector
+libarmep_la_CFLAGS=-Wall -std=gnu99 -pthread -D_FORTIFY_SOURCE=2 -fstack-protector
libarmep_la_LDFLAGS=-pthread
libarmep_la_CFLAGS+= -c \