summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index b86b91f..2ec9968 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -40,6 +40,7 @@ systype = @systype@
top_builddir = ./
+DEFS = @DEFS@
#
# Default target
@@ -47,16 +48,15 @@ top_builddir = ./
all:
-
# Detect if the user wants KDB
-ifeq ($(findstring -DMACH_KDB,@DEFS@),-DMACH_KDB)
+ifeq ($(findstring -DMACH_KDB,$(DEFS)),-DMACH_KDB)
enable_kdb=yes
else
enable_kdb=no
endif
# Detect if the user wants KMSG
-ifeq ($(findstring -DMACH_KMSG,@DEFS@),-DMACH_KMSG)
+ifeq ($(findstring -DMACH_KMSG,$(DEFS)),-DMACH_KMSG)
enable_kmsg=yes
else
enable_kmsg=no