Bug#563272: libtic.so is a dangling symlink
tags 563272 + patch
thanks
On 2010-01-01 18:23 +0100, Matthias Klose wrote:
> Package: lib64ncurses5-dev
> Version: 5.7+20090803-2
> Severity: serious
>
> at least on sparc, the symlink in /usr/lib64 must point to /lib64.
Indeed, and not only on sparc. This is due to a typo in debian/rules,
here is a fix for it:
--8<---------------cut here---------------start------------->8---
diff --git a/debian/rules b/debian/rules
index 0f1567e..79168cd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -343,7 +343,7 @@ ifneq ($(build_32),)
endif
ifneq ($(build_64),)
ln -sf /lib64/libncurses.so.$(soname) debian/$(package-dev-64)/usr/lib64/libncurses.so
- ln -sf /lib64/libtic.so.$(soname) debian/$(package-dev-64)/usr/lib64/tic.so
+ ln -sf /lib64/libtic.so.$(soname) debian/$(package-dev-64)/usr/lib64/libtic.so
endif
# By tradition, we provide -lcurses and -ltermcap.
--8<---------------cut here---------------end--------------->8---
Cheers,
Sven
Reply to: