* Makeconfig (preprocess-versions): Undo last change.
authorRoland McGrath <roland@gnu.org>
Mon, 3 Apr 2000 18:01:18 +0000 (18:01 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 3 Apr 2000 18:01:18 +0000 (18:01 +0000)
Instead, pass -I$(common-objdir) -I$(..)include instead of $(CPPFLAGS).

ChangeLog
Makeconfig

index a9eb4c0..b6a70c1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-04-03  Roland McGrath  <roland@baalperazim.frob.com>
 
+       * Makeconfig (preprocess-versions): Undo last change.
+       Instead, pass -I$(common-objdir) -I$(..)include instead of $(CPPFLAGS).
+
        * sysdeps/mach/hurd/i386/init-first.c (init): Don't set __environ
        here, before we might move the stack.
        (posixland_init): Set __libc_argc, __libc_argc, and __environ here.
index 8ae477a..8a7f948 100644 (file)
@@ -674,7 +674,9 @@ ifeq (yes, $(build-shared))
 # %ifdef et al based on config.h settings or other %include'd files.
 define preprocess-versions
 sed 's/#.*$$//;s/^[    ]*%/#/' \
-| $(CC) -E -undef -include $(common-objpfx)config.h -x c - \
+| $(CC) -E -undef -I$(common-objdir) -I$(..)include \
+                 -include $(common-objpfx)config.h \
+                 -x c - \
 | sed 's/#.*$$//;/^[   ]*$$/d'
 endef