* libltdl/Makefile.am (install-data-local): cd to $(srcdir) before

tarring up the files for installation to $(DESTDIR)$(ltdldatadir).
Don't remove the destination directory, since that interacts badly
with the multi-Makefile installation.
* libltdl/loaders/Makefile.am (install-data-local): Ditto.
This commit is contained in:
Gary V. Vaughan 2005-02-27 00:00:42 +00:00
parent e3582515cc
commit ceb8d350f4
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2005-02-26 Gary V. Vaughan <gary@gnu.org>
* libltdl/Makefile.am (install-data-local): cd to $(srcdir) before
tarring up the files for installation to $(DESTDIR)$(ltdldatadir).
Don't remove the destination directory, since that interacts badly
with the multi-Makefile installation.
* libltdl/loaders/Makefile.am (install-data-local): Ditto.
2005-02-26 Gary V. Vaughan <gary@gnu.org>
I assume that it is okay to have undefined symbols in convenience

View File

@ -76,9 +76,8 @@ ltdldatafiles = COPYING.LIB Makefile.am README configure.ac \
## To avoid spurious reconfiguration when the user installs these files
## with libtoolize, we have to preserve their timestamps carefully:
install-data-local:
-rm -rf $(DESTDIR)$(ltdldatadir)
$(mkinstalldirs) $(DESTDIR)$(ltdldatadir)
$(AMTAR) cf - $(ltdldatafiles) \
( cd $(srcdir) && $(AMTAR) cf - $(ltdldatafiles); ) \
| ( cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; )
## Make sure these will be cleaned even when they're not built by default:

View File

@ -53,7 +53,6 @@ ltdldatafiles = Makefile.am dld_link.c dlopen.c dyld.c \
## To avoid spurious reconfiguration when the user installs these files
## with libtoolize, we have to preserve their timestamps carefully:
install-data-local:
-rm -rf $(DESTDIR)$(ltdldatadir)
$(mkinstalldirs) $(DESTDIR)$(ltdldatadir)
$(AMTAR) cf - $(ltdldatafiles) \
( cd $(srcdir) && $(AMTAR) cf - $(ltdldatafiles) preopen.c; ) \
| ( cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; )