From 8348c5a39cfa664d9c1a2b27d7f0e3e1615f37cb Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 5 Mar 2006 01:19:58 +0000 Subject: 2006-03-04 Roland McGrath * Makefile.in (DEFS): Substitute once and use the variable elsewhere. --- Makefile.in | 6 +++--- 1 file 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 -- cgit v1.2.3