[pkg-boost-commits] r14525 - boost/trunk/debian

Steven Michael Robbins smr at alioth.debian.org
Sat Nov 14 19:39:23 UTC 2009


Author: smr
Date: 2009-11-14 19:39:23 +0000 (Sat, 14 Nov 2009)
New Revision: 14525

Modified:
   boost/trunk/debian/rtupdate
Log:
As of 1.39 (July 2009), we no longer have separate single- and
multi-threaded variants, so simplify script.



Modified: boost/trunk/debian/rtupdate
===================================================================
--- boost/trunk/debian/rtupdate	2009-11-14 19:35:24 UTC (rev 14524)
+++ boost/trunk/debian/rtupdate	2009-11-14 19:39:23 UTC (rev 14525)
@@ -14,20 +14,16 @@
     suf=$2
 
     cd /usr/lib
-    for thread in ""; do
-	target=libboost_python${thread}-${py}.${suf}
-	link=libboost_python${thread}.${suf} 
-	test -e $target && ln -s -f $target $link
-    done
+    target=libboost_python-${py}.${suf}
+    link=libboost_python.${suf} 
+    test -e $target && ln -s -f $target $link
 }
 
 remove_linklibs() {
     suf=$1
 
     cd /usr/lib
-    for thread in "" -mt; do
-	rm -f libboost_python${thread}.${suf} 
-    done
+    rm -f libboost_python.${suf} 
 }
 
 rtupdate() {




More information about the pkg-boost-commits mailing list