diff options
author | Dmitrij D. Czarkoff <czarkoff@gmail.com> | 2015-06-25 22:06:48 +0200 |
---|---|---|
committer | Dmitrij D. Czarkoff <czarkoff@gmail.com> | 2015-06-25 22:06:48 +0200 |
commit | eb78d13a28c9b511e5d3bb1183e2f2f8447e872a (patch) | |
tree | 8e38781d4417f656f5d6ae310cfa9e533b1c5540 | |
parent | 55116373498382adb8debbf40a48d607a8a610be (diff) |
Replaced "-Wpedantic" with "-pedantic"
for compatibility with older GCC versions.
-rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 8653ecd..766f66e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -3,7 +3,7 @@ SRCDIR=$(BASEDIR)/src include $(BASEDIR)/config.mk CPPFLAGS += -I $(BASEDIR)/ -CFLAGS += -fPIC -Wpedantic +CFLAGS += -fPIC -pedantic TEST_PROGS = test-handlers \ test-map \ |