Package: kbear Version: 2.1.1-8 Severity: normal Tags: patch Please do not use use 'libsuff=64' on amd64 and ppc64. Everything should be installed in /usr/lib or /usr/X11R6/lib (not in /usr/lib64 or /usr/X11R6/lib64) on these architectures.
Regards Andreas Jochens diff -urN ../tmp-orig/kbear-2.1.1/acinclude.m4 ./acinclude.m4 --- ../tmp-orig/kbear-2.1.1/acinclude.m4 2005-03-28 10:13:22.233567669 +0200 +++ ./acinclude.m4 2005-03-28 10:12:56.741347329 +0200 @@ -6673,7 +6673,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi diff -urN ../tmp-orig/kbear-2.1.1/aclocal.m4 ./aclocal.m4 --- ../tmp-orig/kbear-2.1.1/aclocal.m4 2005-03-28 10:13:22.171579292 +0200 +++ ./aclocal.m4 2005-03-28 10:12:56.581377323 +0200 @@ -6663,7 +6663,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi diff -urN ../tmp-orig/kbear-2.1.1/admin/libtool.m4.in ./admin/libtool.m4.in --- ../tmp-orig/kbear-2.1.1/admin/libtool.m4.in 2005-03-28 10:13:22.165580416 +0200 +++ ./admin/libtool.m4.in 2005-03-28 10:12:56.532386509 +0200 @@ -1270,7 +1270,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi diff -urN ../tmp-orig/kbear-2.1.1/configure ./configure --- ../tmp-orig/kbear-2.1.1/configure 2005-03-28 10:13:22.225569169 +0200 +++ ./configure 2005-03-28 10:12:56.695355953 +0200 @@ -9413,7 +9413,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi @@ -12712,7 +12712,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi @@ -15532,7 +15532,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]