From: Peter O'Gorman Date: Thu, 1 Sep 2005 16:05:49 +0000 (+0000) Subject: * libltdl/m4/libtool.m4 (old_postintall_cmds): chmod 644 before X-Git-Tag: release-2-1b~534 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d59a4c27eda73e35e3cc3158fccced0f3c25fac;p=thirdparty%2Flibtool.git * libltdl/m4/libtool.m4 (old_postintall_cmds): chmod 644 before running ranlib. Reported by Gerald Pfeifer --- diff --git a/ChangeLog b/ChangeLog index 0c8be1ba5..9fb5b8c38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-09-01 Peter O'Gorman + + * libltdl/m4/libtool.m4 (old_postintall_cmds): chmod 644 before + running ranlib. + Reported by Gerald Pfeifer + 2005-09-01 Ralf Wildenhues * libltdl/m4/libtool.m4 (_LT_PROG_CXX, _LT_PROG_F77) diff --git a/libltdl/m4/libtool.m4 b/libltdl/m4/libtool.m4 index 7560d8c7c..a85b0674f 100644 --- a/libltdl/m4/libtool.m4 +++ b/libltdl/m4/libtool.m4 @@ -1200,10 +1200,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"