diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-08-08 15:26:18 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-08-08 15:26:18 +0000 |
commit | 563f86b26914a72ef68be1a1f5569119af681573 (patch) | |
tree | 6f7648fa70e6efbf3f4abaa27edf43eac16db96b /Makefile | |
parent | 19707f868dc267f650efd8851c387fdb05c2d098 (diff) | |
download | rsyslog-563f86b26914a72ef68be1a1f5569119af681573.tar.gz rsyslog-563f86b26914a72ef68be1a1f5569119af681573.tar.xz rsyslog-563f86b26914a72ef68be1a1f5569119af681573.zip |
Makefile conditionals guarded against leading/trailing spaces
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -35,13 +35,12 @@ BINDIR = /usr/sbin MANDIR = /usr/share/man -ifeq ($(FEATURE_LARGEFILE), 0) +# now comes the evaluation of the FEATURE_* settings +ifeq ($(strip $(FEATURE_LARGEFILE)), 0) NOLARGEFILE = -DNOLARGEFILE endif -# uncomment the following line if you would -# like to disable MySQL support -ifeq ($(FEATURE_DB), 1) +ifeq ($(strip $(FEATURE_DB)), 1) WITHDB=-DWITHDB endif |