diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2001-12-14 19:14:27 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@redhat.com> | 2001-12-14 19:14:27 +0000 |
commit | cdf7120d2d2d80875f29e19cbade45247272c299 (patch) | |
tree | 1aba26a233d3f494ea982214eaa461d834b46034 | |
parent | b6ddef77a40b2d0aa3e6ac4e0d9195104571c293 (diff) | |
download | newlib-cdf7120d2d2d80875f29e19cbade45247272c299.zip newlib-cdf7120d2d2d80875f29e19cbade45247272c299.tar.gz newlib-cdf7120d2d2d80875f29e19cbade45247272c299.tar.bz2 |
* libc/stdio/Makefile.am (vfprintf.$(oext)): Add $(INCLUDES) to
compile line.
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/libc/stdio/Makefile.am | 2 | ||||
-rw-r--r-- | newlib/libc/stdio/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 6cf3ec0..8868c62 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2001-12-14 Thomas Fitzsimmons <fitzsim@redhat.com> + + * libc/stdio/Makefile.am (vfprintf.$(oext)): Add $(INCLUDES) to + compile line. + 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com> * Makefile.shared: New file. diff --git a/newlib/libc/stdio/Makefile.am b/newlib/libc/stdio/Makefile.am index cc7878a..3049680 100644 --- a/newlib/libc/stdio/Makefile.am +++ b/newlib/libc/stdio/Makefile.am @@ -93,7 +93,7 @@ include $(srcdir)/../../Makefile.shared # libtool moves vfprintf.o and subsequently can't find it. vfprintf.$(oext): vfprintf.c - $(LIB_COMPILE) -c $(srcdir)/vfprintf.c + $(LIB_COMPILE) $(INCLUDES) -c $(srcdir)/vfprintf.c vfiprintf.$(oext): vfprintf.c $(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfprintf.c -o $@ diff --git a/newlib/libc/stdio/Makefile.in b/newlib/libc/stdio/Makefile.in index 705f072..9165ad1 100644 --- a/newlib/libc/stdio/Makefile.in +++ b/newlib/libc/stdio/Makefile.in @@ -497,7 +497,7 @@ objectlist.awk.in: $(noinst_LTLIBRARIES) # libtool moves vfprintf.o and subsequently can't find it. vfprintf.$(oext): vfprintf.c - $(LIB_COMPILE) -c $(srcdir)/vfprintf.c + $(LIB_COMPILE) $(INCLUDES) -c $(srcdir)/vfprintf.c vfiprintf.$(oext): vfprintf.c $(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfprintf.c -o $@ |