diff options
author | Stepan Kasal | 2007-05-15 20:46:15 +0200 |
---|---|---|
committer | Karel Zak | 2007-05-16 11:43:30 +0200 |
commit | 1f317686715f0e1cad9404b5c5c89f1ecac5d915 (patch) | |
tree | 710656f9d6019d304396e08b8d75b9c5c335fbc2 /login-utils | |
parent | build-sys: do not set with_foo twice (diff) | |
download | kernel-qcow2-util-linux-1f317686715f0e1cad9404b5c5c89f1ecac5d915.tar.gz kernel-qcow2-util-linux-1f317686715f0e1cad9404b5c5c89f1ecac5d915.tar.xz kernel-qcow2-util-linux-1f317686715f0e1cad9404b5c5c89f1ecac5d915.zip |
build-sys: move -D flags to *_CPPFLAGS
Preprocessor options belong to *_CPPFLAGS; add $(AM_CPPFLAGS) as we
want to amend it, not override.
Signed-off-by: Stepan Kasal <skasal@redhat.com>
Diffstat (limited to 'login-utils')
-rw-r--r-- | login-utils/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/login-utils/Makefile.am b/login-utils/Makefile.am index efdba27c0..639db58c6 100644 --- a/login-utils/Makefile.am +++ b/login-utils/Makefile.am @@ -132,5 +132,5 @@ endif noinst_PROGRAMS = checktty_test checktty_test_SOURCES = checktty.c login.h -checktty_test_CFLAGS = -DMAIN_TEST_CHECKTTY +checktty_test_CPPFLAGS = -DMAIN_TEST_CHECKTTY $(AM_CPPFLAGS) |