diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2012-06-28 08:26:00 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2012-06-28 08:26:00 +0000 |
commit | 9b82034b29a4ca716cc54cc1546fdeae760c4d85 (patch) | |
tree | d240f58db3cfd6b6d776ea64ff020f25d29e1484 /newlib | |
parent | b052bf2671137fbae0b70e6950af2beffb076309 (diff) | |
download | cygnal-9b82034b29a4ca716cc54cc1546fdeae760c4d85.tar.gz cygnal-9b82034b29a4ca716cc54cc1546fdeae760c4d85.tar.bz2 cygnal-9b82034b29a4ca716cc54cc1546fdeae760c4d85.zip |
* doc/Makefile.am (makedoc): Use LDFLAGS_FOR_BUILD not LDFLAGS.
* doc/Makefile.in: Regenerate.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/doc/Makefile.am | 2 | ||||
-rw-r--r-- | newlib/doc/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 5a1ef56af..f3bb3db4e 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2012-06-28 Matthew Gretton-Dann <matthew.gretton-dann@arm.com> + + * doc/Makefile.am (makedoc): Use LDFLAGS_FOR_BUILD not LDFLAGS. + * doc/Makefile.in: Regenerate. + 2012-06-26 Christopher Faylor <me.newlib2012@cgf.cx> * libc/include/sys/types.h: Don't use the same preprocessor guard for diff --git a/newlib/doc/Makefile.am b/newlib/doc/Makefile.am index 5bf13599a..c86300780 100644 --- a/newlib/doc/Makefile.am +++ b/newlib/doc/Makefile.am @@ -12,7 +12,7 @@ MKDOC = makedoc$(EXEEXT_FOR_BUILD) # -Os, which CC_FOR_BUILD may not recognize. $(MKDOC): makedoc.o - $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS) -o $(MKDOC) makedoc.o + $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $(MKDOC) makedoc.o makedoc.o: makedoc.c $(CC_FOR_BUILD) -g $(CFLAGS_FOR_BUILD) -c $(srcdir)/makedoc.c diff --git a/newlib/doc/Makefile.in b/newlib/doc/Makefile.in index 62378354b..b9e3ad361 100644 --- a/newlib/doc/Makefile.in +++ b/newlib/doc/Makefile.in @@ -324,7 +324,7 @@ uninstall-am: # -Os, which CC_FOR_BUILD may not recognize. $(MKDOC): makedoc.o - $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS) -o $(MKDOC) makedoc.o + $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $(MKDOC) makedoc.o makedoc.o: makedoc.c $(CC_FOR_BUILD) -g $(CFLAGS_FOR_BUILD) -c $(srcdir)/makedoc.c |