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>
+
+ * 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
## 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:
## 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 -; )