diff options
author | Samuel Thibault <sthibault@debian.org> | 2010-01-11 06:11:07 +0000 |
---|---|---|
committer | Samuel Thibault <sthibault@debian.org> | 2010-01-11 06:11:07 +0000 |
commit | 28fe92a25f99a5b1221a9587a7b3121ccdc25952 (patch) | |
tree | 7330166feb4402185830aa6feff530b25cbf6110 | |
parent | 4544d433921db70fea839a7c940ad38df8b431d1 (diff) |
debian/rules: Do not ship *_pic.a, as mklibs breaks them.
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index f843118a..475245af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -24,8 +24,7 @@ hurd (20090404-3) UNRELEASED; urgency=low * debian/hurd-udeb.install: Remove getty, runttys, /etc/ttys ftpcp, ftpdir, ftpfs, hostmux, usermux, nfs, isofs.static, rpctrace, gcore, forks. Install local/runsystem.gnu in /libexec, install ext2fs.static in /boot - * debian/rules: Do not ship libthread_*.pic.a, as mklibs doesn't manage to - keep version information. + * debian/rules: Do not ship *_pic.a, as mklibs breaks them. * debian/patches/MAKEDEV.patch: Make MAKEDEV bash-free. * debian/patches/tmpfs.patch: New patch to fix tmpfs crash. diff --git a/debian/rules b/debian/rules index 17043709..8dcb55e8 100755 --- a/debian/rules +++ b/debian/rules @@ -63,5 +63,5 @@ SUID_PROGRAMS = /bin/ids /bin/login /bin/ps-hurd /usr/bin/w-hurd binary-predeb/hurd:: chmod u+s $(patsubst %, $(CURDIR)/debian/$(cdbs_curpkg)%, $(SUID_PROGRAMS)) binary-predeb/hurd-dev:: - rm -f $(CURDIR)/debian/hurd-dev/lib/libthread*_pic.a + rm -f $(CURDIR)/debian/hurd-dev/lib/*_pic.a |