$(DESTDIR).
* libltdl/loaders/Makefile.am (install-data-local): Ditto.
* NEWS: Updated.
+2005-02-23 Gary V. Vaughan <gary@gnu.org>
+
+ * libltdl/Makefile.am (install-data-local): Don't forget about
+ $(DESTDIR).
+ * libltdl/loaders/Makefile.am (install-data-local): Ditto.
+ * NEWS: Updated.
+
2005-02-23 Gary V. Vaughan <gary@gnu.org>
Preserving the installed timestamps for libltdl sources from
New in 1.9h: 2004-??-??; CVS version 1.9g, Libtool team:
* Support for Portland Group compiler on GNU/Linux.
* Fix libltdl on static platforms.
+* Fix spurious reconfiguration of newly installed libltdl sources.
* Support for linux-dietlibc (`diet' as well as `diet-dyn', separately).
* `libtoolize --install' now also installs `install-sh'.
* Support (mostly) for DragonFly BSD.
## To avoid spurious reconfiguration when the user installs these files
## with libtoolize, we have to preserve their timestamps carefully:
install-data-local:
- $(mkinstalldirs) $(ltdldatadir)
+ -rm -rf $(DESTDIR)$(ltdldatadir)
+ $(mkinstalldirs) $(DESTDIR)$(ltdldatadir)
$(AMTAR) cf - $(ltdldatafiles) \
- | ( cd $(ltdldatadir) && $(AMTAR) xf -; )
+ | ( cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; )
## Make sure these will be cleaned even when they're not built by default:
CLEANFILES = libltdl.la libltdlc.la libdlloader.la
## To avoid spurious reconfiguration when the user installs these files
## with libtoolize, we have to preserve their timestamps carefully:
install-data-local:
- $(mkinstalldirs) $(ltdldatadir)
+ -rm -rf $(DESTDIR)$(ltdldatadir)
+ $(mkinstalldirs) $(DESTDIR)$(ltdldatadir)
$(AMTAR) cf - $(ltdldatafiles) \
- | ( cd $(ltdldatadir) && $(AMTAR) xf -; )
+ | ( cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; )
../libdlloader.la:
cd ..; $(MAKE) $(AM_MAKEFLAGS) libdlloader.la