diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-08 21:31:08 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-08 21:31:08 +0000 |
commit | a08c98bb808d1a1806c93be0b7934a19f48b5a0a (patch) | |
tree | c122ad639d6c278eeaa30931cf5a2e510a12e599 /newlib/Makefile.am | |
parent | ff7c4faf873711c0bf37858ae8705d6e2e4fbe62 (diff) | |
download | cygnal-a08c98bb808d1a1806c93be0b7934a19f48b5a0a.tar.gz cygnal-a08c98bb808d1a1806c93be0b7934a19f48b5a0a.tar.bz2 cygnal-a08c98bb808d1a1806c93be0b7934a19f48b5a0a.zip |
2000-12-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: $(INSTALL), $(INSTALL_DATA), and $(INSTALL_PROGRAM)
can be a relative path to $(top_srcdir)/install.sh so ensure the
autoconf detected settings are properly passed recursively.
Similarly, add AM_MAKEFLAGS to FLAGS_TO_PASS so they also get passed
properly to subdirectories.
* Makefile.in: Regenerated.
Diffstat (limited to 'newlib/Makefile.am')
-rw-r--r-- | newlib/Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/Makefile.am b/newlib/Makefile.am index a1ce30a8d..b78fd59c6 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -19,10 +19,6 @@ AM_MAKEFLAGS = \ "CFLAGS=$(CFLAGS)" \ "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \ "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \ - "INSTALL=$(INSTALL)" \ - "INSTALL_DATA=$(INSTALL_DATA)" \ - "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ - "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \ "LDFLAGS=$(LDFLAGS)" \ "LIBCFLAGS=$(LIBCFLAGS)" \ "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \ @@ -49,6 +45,8 @@ AM_MAKEFLAGS = \ "RANLIB=$(RANLIB)" \ "DESTDIR=$(DESTDIR)" +FLAGS_TO_PASS=$(AM_MAKEFLAGS) + if HAVE_DOC DOCDIR = doc endif |