From 4d59a4c27eda73e35e3cc3158fccced0f3c25fac Mon Sep 17 00:00:00 2001 From: Peter O'Gorman Date: Thu, 1 Sep 2005 16:05:49 +0000 Subject: [PATCH] * libltdl/m4/libtool.m4 (old_postintall_cmds): chmod 644 before running ranlib. Reported by Gerald Pfeifer --- ChangeLog | 6 ++++++ libltdl/m4/libtool.m4 | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0c8be1ba..9fb5b8c3 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 7560d8c7..a85b0674 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" -- 2.11.4.GIT