diff options
author | Tom Tromey <tromey@redhat.com> | 2006-06-05 15:08:56 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2006-06-05 15:08:56 +0000 |
commit | 3118f0d55139258513a84d0e2138cfb6d7f4772a (patch) | |
tree | c66b7df7df6e37a4454afaa2d2146352244916b4 /libjava/libltdl/Makefile.in | |
parent | a8b28492159212fec3f0faf9dc49c80eef899561 (diff) | |
download | gcc-3118f0d55139258513a84d0e2138cfb6d7f4772a.tar.gz |
re PR bootstrap/27818 (libjava installs libltdl sources in $prefix/share/libtool)
PR gcc/27818:
* Makefile.in: Rebuilt.
* Makefile.am (install-data-local): Define conditionally.
From-SVN: r114389
Diffstat (limited to 'libjava/libltdl/Makefile.in')
-rw-r--r-- | libjava/libltdl/Makefile.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libjava/libltdl/Makefile.in b/libjava/libltdl/Makefile.in index 6bacd8783f2..05dc43dccf1 100644 --- a/libjava/libltdl/Makefile.in +++ b/libjava/libltdl/Makefile.in @@ -577,6 +577,7 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." +@INSTALL_LTDL_FALSE@install-data-local: clean: clean-am clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ @@ -654,11 +655,11 @@ $(libltdl_la_OBJECTS) $(libltdlc_la_OBJECTS): libtool libtool: $(LIBTOOL_DEPS) $(SHELL) ./config.status --recheck -install-data-local: - -rm -rf $(DESTDIR)$(ltdldatadir) - $(mkinstalldirs) $(DESTDIR)$(ltdldatadir) - ( cd $(srcdir) && $(AMTAR) chf - $(ltdldatafiles); ) \ - | ( umask 0 && cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; ) +@INSTALL_LTDL_TRUE@install-data-local: +@INSTALL_LTDL_TRUE@ -rm -rf $(DESTDIR)$(ltdldatadir) +@INSTALL_LTDL_TRUE@ $(mkinstalldirs) $(DESTDIR)$(ltdldatadir) +@INSTALL_LTDL_TRUE@ ( cd $(srcdir) && $(AMTAR) chf - $(ltdldatafiles); ) \ +@INSTALL_LTDL_TRUE@ | ( umask 0 && cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; ) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |