]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/Makefile.am (install-data-local): Use `&&' to separate
authorGary V. Vaughan <gary@gnu.org>
Thu, 10 Mar 2005 20:58:06 +0000 (20:58 +0000)
committerGary V. Vaughan <gary@gnu.org>
Thu, 10 Mar 2005 20:58:06 +0000 (20:58 +0000)
commands so that stdin reaches the untar pracess.
* libltdl/loaders/Makefile.am (install-data-local): Ditto.
* libtoolize.m4sh (func_copy_cb): Ditto.

ChangeLog
libltdl/Makefile.am
libltdl/loaders/Makefile.am
libtoolize.m4sh

index b0653f2ab278aba25083d7e06c1e5494e797c975..15cc9e21053c7d97db8ab421aa50d46ec5f2fd8c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2005-03-10  Gary V. Vaughan  <gary@gnu.org>
 
+       * libltdl/Makefile.am (install-data-local): Use `&&' to separate
+       commands so that stdin reaches the untar pracess.
+       * libltdl/loaders/Makefile.am (install-data-local): Ditto.
+       * libtoolize.m4sh (func_copy_cb): Ditto.
+
        * libltdl/Makefile.am (install-data-local): Don't force v7 tar
        format with the `o' flag in create mode.
        Set the umask to 0 when untarring to avoid copied files taking
index 01697c045302009c6eced4301a0458242fae002f..3833d550a3b802f3b2b91ef84206faa8a659d25b 100644 (file)
@@ -80,7 +80,7 @@ ltdldatafiles         = COPYING.LIB README \
 install-data-local:
        $(mkinstalldirs) $(DESTDIR)$(ltdldatadir)
        ( cd $(srcdir) && $(AMTAR) chf - $(ltdldatafiles); ) \
-         | ( umask 0; cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; )
+         | ( umask 0 && 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
index 9c609407c7b15e08d5682fa373929ba0b3cfcafe..dcacf885f7374a3bb2dfc3671aab7ce20ab0bbad 100644 (file)
@@ -56,5 +56,5 @@ ltdldatafiles         = Makefile.am Makefile.in \
 install-data-local:
        $(mkinstalldirs) $(DESTDIR)$(ltdldatadir)
        ( cd $(srcdir) && $(AMTAR) chf - $(ltdldatafiles); ) \
-         | ( umask 0; cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; )
+         | ( umask 0 && cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; )
 
index 4ff822335d3747307c1f661526c3780a40396c1a..f8ac5e07341af9400570ed8c4c3d25a2a341b54f 100644 (file)
@@ -231,7 +231,7 @@ func_copy_cb ()
       $opt_quiet || func_echo "copying file \`$my_destdir/$my_file'"
       copy_return_status=0
     elif { ( cd "$my_srcdir" 2>/dev/null && $TAR chf - "$my_file" 2> /dev/null; ) \
-        | ( umask 0; cd "$my_destdir" 2>/dev/null && "$TAR" xf - > /dev/null 2>&1; ) }
+        | ( umask 0 && cd "$my_destdir" 2>/dev/null && "$TAR" xf - > /dev/null 2>&1; ) }
     then
       $opt_quiet || func_echo "copying file \`$my_destdir/$my_file'"
       copy_return_status=0