]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtool.m4 (old_postintall_cmds): chmod 644 before running
authorPeter O'Gorman <peter@pogma.com>
Thu, 1 Sep 2005 16:06:03 +0000 (16:06 +0000)
committerPeter O'Gorman <peter@pogma.com>
Thu, 1 Sep 2005 16:06:03 +0000 (16:06 +0000)
ranlib.
Reported by Gerald Pfeifer <gerald@pfeifer.com>

ChangeLog
libtool.m4

index 111caf41153543016ff73bc38a87c89d78d0988c..610ef9f7b35fc5e8fd241f8959499f8b94065270 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-09-01  Peter O'Gorman  <peter@pogma.com>
+
+       * libtool.m4 (old_postintall_cmds): chmod 644 before running
+       ranlib.
+       Reported by Gerald Pfeifer <gerald@pfeifer.com>
+
 2005-08-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * configure.ac: Bump version.
index 771b86f32dd9eb56fe291b7b50aa3678f50d256f..055e59d6e7698fc70b8683d7f9309984c6eafec6 100644 (file)
@@ -176,10 +176,10 @@ old_postuninstall_cmds=
 if test -n "$RANLIB"; then
   case $host_os in
   openbsd*)
-    old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds"
+    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
     ;;
   *)
-    old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
+    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
     ;;
   esac
   old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"