]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Atomically install a shared library link.
authorBruno Haible <bruno@clisp.org>
Mon, 16 Sep 2002 16:59:29 +0000 (16:59 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:08:46 +0000 (12:08 +0200)
ChangeLog
ltmain.sh

index e7d7862944b1899b1474c5a17c4056fe76138bd5..9a416da7134694bdca16a483566d9ededd03b3fb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2002-09-16  Bruno Haible  <bruno@clisp.org>
+
+       * ltmain.sh (install): Use "ln -s -f" instead of "rm -f && ln -s"
+       to make a symlink for a shared library.
+       Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
+
+2002-08-06  Bruno Haible  <bruno@clisp.org>
+
+       * gettext-0.11.5 released.
+
 2002-07-25  Bruno Haible  <bruno@clisp.org>
 
        * gettext-0.11.4 released.
index 5c48e56620deb0f1151273e40d084c400e9dfc3f..4af5b4491907ec8343c5cba5e60c41467c7c3b69 100644 (file)
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -4210,8 +4210,8 @@ relink_command=\"$relink_command\""
            for linkname
            do
              if test "$linkname" != "$realname"; then
-               $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
-               $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
+               $show "(cd $destdir && $LN_S -f $realname $linkname)"
+               $run eval "(cd $destdir && $LN_S -f $realname $linkname)"
              fi
            done
          fi