diff options
author | Roland McGrath <roland@gnu.org> | 2002-10-17 09:16:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-10-17 09:16:52 +0000 |
commit | d29724f8706e4e46994d6fabafc8389f7624cd0f (patch) | |
tree | 7022a6d3d1a07dde443ba8587a56b06246cc11eb | |
parent | 0a951d0e31b5fb34f7e0428e933d7df55ef7f94d (diff) | |
download | glibc-d29724f8706e4e46994d6fabafc8389f7624cd0f.tar glibc-d29724f8706e4e46994d6fabafc8389f7624cd0f.tar.gz glibc-d29724f8706e4e46994d6fabafc8389f7624cd0f.tar.bz2 glibc-d29724f8706e4e46994d6fabafc8389f7624cd0f.zip |
* Makeconfig (CPPFLAGS): Fix last change to use $(libof-$(<F))
instead of $(libof-$<).
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makeconfig | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2002-10-17 Roland McGrath <roland@redhat.com> + + * Makeconfig (CPPFLAGS): Fix last change to use $(libof-$(<F)) + instead of $(libof-$<). + 2002-10-16 Roland McGrath <roland@redhat.com> * cppflags-iterator.mk (CPPFLAGS-$(cpp-src)): Variable removed. diff --git a/Makeconfig b/Makeconfig index b6a1b4aeb1..3ee4ece1fd 100644 --- a/Makeconfig +++ b/Makeconfig @@ -633,8 +633,8 @@ libio-include = -I$(..)libio CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \ -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \ $(CPPFLAGS-$(suffix $@)) \ - $(foreach L,$(libof-$(basename $(@F))) $(libof-$<) $(libof-$(@F)),\ - $(CPPFLAGS-$L)) \ + $(foreach lib,$(libof-$(basename $(@F))) \ + $(libof-$(<F)) $(libof-$(@F)),$(CPPFLAGS-$(lib))) \ $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F)) $(CPPFLAGS-$(basename $(@F))) override CFLAGS = -std=gnu99 \ $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \ |