[pkg-boost-commits] r14493 - boost/branches/1.39.0/debian
Steven Michael Robbins
smr at alioth.debian.org
Wed Sep 9 03:32:42 UTC 2009
Author: smr
Date: 2009-09-09 03:32:42 +0000 (Wed, 09 Sep 2009)
New Revision: 14493
Modified:
boost/branches/1.39.0/debian/changelog
boost/branches/1.39.0/debian/rules
Log:
Fix -mt decoration; it must go before final suffix.
Modified: boost/branches/1.39.0/debian/changelog
===================================================================
--- boost/branches/1.39.0/debian/changelog 2009-09-09 03:05:59 UTC (rev 14492)
+++ boost/branches/1.39.0/debian/changelog 2009-09-09 03:32:42 UTC (rev 14493)
@@ -3,9 +3,10 @@
* rules: Rule $(bjam) needs to depend on $(QUILT_STAMPFN) because
patches/bootstrap.patch modifies script bootstrap.sh, used to build
$(bjam). Thanks to Andreas Ferber for the report and astute analysis.
- Closes: #545535.
+ Closes: #545535. Put the "-mt" decoration before the final suffix for
+ compatibility symlinks. Closes: #545773.
- -- Steve M. Robbins <smr at debian.org> Tue, 08 Sep 2009 22:09:11 -0500
+ -- Steve M. Robbins <smr at debian.org> Tue, 08 Sep 2009 22:36:47 -0500
boost1.39 (1.39.0-4) unstable; urgency=low
Modified: boost/branches/1.39.0/debian/rules
===================================================================
--- boost/branches/1.39.0/debian/rules 2009-09-09 03:05:59 UTC (rev 14492)
+++ boost/branches/1.39.0/debian/rules 2009-09-09 03:32:42 UTC (rev 14493)
@@ -72,7 +72,7 @@
mk_ln_files = $(shell echo $(call mk_base_name,$(2),$(3),$(4)).so.$(SOVERSION) $(call mk_base_name,$(2),$(3),$(4)).so >> $(call mk_deb_dev,$(1),$(3)).links)
# Make compatibility symlinks libfoo-mt --> libfoo
-mk_mtln_files = $(shell echo $(call mk_base_name,$(2),$(3),$(4)).so.$(SOVERSION) $(call mk_base_name,$(2),$(3),$(4))-mt.so >> $(call mk_deb_dev,$(1),$(3)).links)
+mk_mtln_files = $(shell echo $(call mk_base_name,$(2),$(3),$(4)).so.$(SOVERSION) $(call mk_base_name,$(2),$(3)-mt,$(4)).so >> $(call mk_deb_dev,$(1),$(3)).links)
# Function that updates debhelper files for a given library variant
# Input: component, library, variant, suffix
More information about the pkg-boost-commits
mailing list