]> granicus.if.org Git - zziplib/commitdiff
fix zzip-postinstall
authorGuido Draheim <guidod@gmx.de>
Sat, 23 May 2009 12:42:23 +0000 (12:42 +0000)
committerGuido Draheim <guidod@gmx.de>
Sat, 23 May 2009 12:42:23 +0000 (12:42 +0000)
ChangeLog
Makefile.am

index 01b8a8b36bf6b1e18aedae347f5d52953a74ddbe..73626d86aabc30808790d17447b4de2a2e328131 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,7 @@
          the example code, SDL_rwops_zzip includes and SDL_rwops_zzip pkgconfig
     * append "make check" and "make test-sdl" to zziplib.spec for  minimal
          pre-installation check.
+    * Makefile.am: fix zzip-postinstall
 
 2009-05-22  guidod  <guidod@gmx.de>
        * docs/Makefile.am: break a dual target into two lines as
index 613e85bf442ae8600728b2042b74b818440180fa..61ff77ab3e459fa3491a175da11926827acfa960 100644 (file)
@@ -118,9 +118,9 @@ zzip-postinstall:
        : "the 12.8x and 11.8x and 10.8x packages are all the same actually"
        cd $(DESTDIR)$(libdir) || exit 1 \
        ; for i in libzzip*.so.1? ; do : \
-       ; v10=`echo $i | sed -e "s/.so.../.so.10/"` \
-       ; v11=`echo $i | sed -e "s/.so.../.so.11/"` \
-       ; v12=`echo $i | sed -e "s/.so.../.so.12/"` \
-       ; test ! -e $v10 && test -e $v12 && ln -s $v12 $v10 \
-       ; test ! -e $v12 && test -e $v10 && ln -s $v10 $v12 \
-       ; ln -s $v10 $v11 || true; done
+       ; v10=`echo $$i | sed -e "s/.so.../.so.10/"` \
+       ; v11=`echo $$i | sed -e "s/.so.../.so.11/"` \
+       ; v12=`echo $$i | sed -e "s/.so.../.so.12/"` \
+       ; test ! -e $$v10 && test -e $$v12 && test "$v10" != "$v12" && ln -s $$v12 $$v10 \
+       ; test ! -e $$v12 && test -e $$v10 && test "$v12" != "$v10" && ln -s $$v10 $$v12 \
+       ; test "$v10" != "$v11" && ln -s $v10 $v11 || true; done