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

Steven Michael Robbins smr at alioth.debian.org
Wed Nov 18 02:59:24 UTC 2009


Author: smr
Date: 2009-11-18 02:59:24 +0000 (Wed, 18 Nov 2009)
New Revision: 14535

Modified:
   boost/trunk/debian/changelog
   boost/trunk/debian/rtupdate
Log:
Fix rtupdate so that boost-python can be installed without boost-mpi-python.

Modified: boost/trunk/debian/changelog
===================================================================
--- boost/trunk/debian/changelog	2009-11-15 10:13:45 UTC (rev 14534)
+++ boost/trunk/debian/changelog	2009-11-18 02:59:24 UTC (rev 14535)
@@ -1,3 +1,12 @@
+boost1.40 (1.40.0-4) unstable; urgency=low
+
+  * rtupdate: Don't die if link target doesn't exist.  Update of
+    libboost_mpi_python links failed when boost-python but not
+    boost-mpi-python installed, causing postinst to fail.  
+    Closes: #556625.
+
+ -- Steve M. Robbins <smr at debian.org>  Tue, 17 Nov 2009 20:58:40 -0600
+
 boost1.40 (1.40.0-3) unstable; urgency=low
 
   * rules: Keep all headers in package libboostX.Y-dev to avoid bugs about

Modified: boost/trunk/debian/rtupdate
===================================================================
--- boost/trunk/debian/rtupdate	2009-11-15 10:13:45 UTC (rev 14534)
+++ boost/trunk/debian/rtupdate	2009-11-18 02:59:24 UTC (rev 14535)
@@ -17,7 +17,9 @@
     for base in libboost_python libboost_mpi_python; do
 	target=${base}-${py}.${suf}
 	link=${base}.${suf} 
-	test -e $target && ln -s -f $target $link
+	if [ test -e $target ]; then
+	    ln -s -f $target $link
+	fi
     done
 }
 




More information about the pkg-boost-commits mailing list