]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* Makefile.am (install-data-hook): Don't show the if expression
authorGary V. Vaughan <gary@gnu.org>
Tue, 26 Jan 1999 15:22:52 +0000 (15:22 +0000)
committerGary V. Vaughan <gary@gnu.org>
Tue, 26 Jan 1999 15:22:52 +0000 (15:22 +0000)
that tests for gzip with a conditional error message; just do it
quietly and show the error if it fails, or the next action if it
succeeds.

ChangeLog
Makefile.am

index 3836d2317bf6cc7d33816e8546ede7c85c2ff69b..a691736b54c5b08d6b6985cbe09bfb41935efc7d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 1999-01-26  Gary V. Vaughan  <gvaughan@oranda.demon.co.uk>
 
+       * Makefile.am (install-data-hook): Don't show the if expression
+       that tests for gzip with a conditional error message; just do it
+       quietly and show the error if it fails, or the next action if it
+       succeeds.
+       
        * configure.in:  It seems Alexandre accidentally removed the
        AC_SUBST(pkgdatadir) line recently which breaks libtoolize.
        Reverted that small change.
index 4bac3855a7f5539c4994f0c63dc77d7c78f0c091..8466e78a13c6fcbca74f22a77d3263418e544411 100644 (file)
@@ -97,12 +97,14 @@ configure-subdirs distdir: $(DIST_MAKEFILE_LIST)
 
 # Create and install libltdl.tar.gz
 install-data-hook: libltdl/Makefile
-       if (cd libltdl && $(MAKE) distdir distdir=libltdl && \
+       @echo 'cd libltdl && $(MAKE) distdir distdir=libltdl && tar -cf libltdl.tar libltdl && gzip $(GZIP_ENV) libltdl.tar'
+       @if (cd libltdl && $(MAKE) distdir distdir=libltdl && \
         tar -cf libltdl.tar libltdl && \
         gzip $(GZIP_ENV) libltdl.tar); then \
+         echo "$(INSTALL_DATA) libltdl/libltdl.tar.gz $(pkgdatadir)/libltdl.tar.gz"; \
          $(INSTALL_DATA) libltdl/libltdl.tar.gz $(pkgdatadir)/libltdl.tar.gz; \
        else \
-         echo Warning: without gzip, libtool cannot install libltdl.tar.gz; \
+         echo "Warning: without gzip, libtool cannot install libltdl.tar.gz"; \
        fi; \
        rm -rf libltdl/libltdl libltdl/libltdl.tar libltdl/libltdl.tar.gz