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.in | |
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.in')
-rw-r--r-- | newlib/Makefile.in | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/newlib/Makefile.in b/newlib/Makefile.in index eb0fdaaf8..db16a1f8a 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -95,10 +95,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)" \ @@ -126,8 +122,9 @@ AM_MAKEFLAGS = \ "DESTDIR=$(DESTDIR)" -@HAVE_DOC_TRUE@DOCDIR = \ -@HAVE_DOC_TRUE@doc +FLAGS_TO_PASS = $(AM_MAKEFLAGS) + +@HAVE_DOC_TRUE@DOCDIR = @HAVE_DOC_TRUE@doc SUBDIRS = libc libm $(DOCDIR) . @@ -409,7 +406,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ if test -f $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ - cp -pr $$/$$file $(distdir)/$$file; \ + cp -pr $$d/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ |