* libc/stdio/Makefile.am (vfprintf.$(oext)): Add $(INCLUDES) to
compile line.
This commit is contained in:
parent
b6ddef77a4
commit
cdf7120d2d
|
@ -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.
|
||||
|
|
|
@ -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 $@
|
||||
|
|
|
@ -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 $@
|
||||
|
|
Loading…
Reference in New Issue