[Pkg-tcltk-commits] r1824 - tcllib/trunk/debian
sgolovan at alioth.debian.org
sgolovan at alioth.debian.org
Wed Apr 6 19:50:01 UTC 2016
Author: sgolovan
Date: 2016-04-06 19:50:00 +0000 (Wed, 06 Apr 2016)
New Revision: 1824
Modified:
tcllib/trunk/debian/changelog
tcllib/trunk/debian/rules
Log:
[tcllib]
* Fixed FTBFS for GNU/kFreeBSD architectures because of buggy library
placement.
Modified: tcllib/trunk/debian/changelog
===================================================================
--- tcllib/trunk/debian/changelog 2016-03-31 11:07:17 UTC (rev 1823)
+++ tcllib/trunk/debian/changelog 2016-04-06 19:50:00 UTC (rev 1824)
@@ -1,8 +1,9 @@
-tcllib (1.18-dfsg-2) UNRELEASED; urgency=medium
+tcllib (1.18-dfsg-2) unstable; urgency=medium
- * NOT RELEASED YET
+ * Fixed FTBFS for GNU/kFreeBSD architectures because of buggy library
+ placement.
- -- Sergei Golovan <sgolovan at debian.org> Thu, 31 Mar 2016 14:07:16 +0300
+ -- Sergei Golovan <sgolovan at debian.org> Wed, 06 Apr 2016 22:49:28 +0300
tcllib (1.18-dfsg-1) unstable; urgency=medium
Modified: tcllib/trunk/debian/rules
===================================================================
--- tcllib/trunk/debian/rules 2016-03-31 11:07:17 UTC (rev 1823)
+++ tcllib/trunk/debian/rules 2016-04-06 19:50:00 UTC (rev 1824)
@@ -129,7 +129,8 @@
rm $(tcllibcdir)/teapot.txt
#
# relocate library file
- mv $(tcllibcdir)/*/*.so $(tcllibcdir)/
+ find $(tcllibcdir) -name '*.so' -exec mv \{\} $(tcllibcdir)/ \;
+ find $(tcllibcdir) -name pkgIndex.tcl -exec mv \{\} $(tcllibcdir)/ \;
sed -i -e 's/file join \$$path/file join \$$dir/' $(tcllibcdir)/pkgIndex.tcl
#
# move all the library
More information about the Pkg-tcltk-commits
mailing list