From b2274f0cc5d94c2c3aad7f2a276437494ae0f7dd Mon Sep 17 00:00:00 2001 From: Olivier Thauvin Date: Thu, 18 May 2006 15:38:44 +0000 Subject: - add patch from guillomovitch to fix #21079 --- lib_symlinks | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib_symlinks') diff --git a/lib_symlinks b/lib_symlinks index 8cef7d9..cd8a03d 100755 --- a/lib_symlinks +++ b/lib_symlinks @@ -17,7 +17,10 @@ if [ -z "$RPM_BUILD_ROOT" ]; then exit 0 fi -libs=`find $RPM_BUILD_ROOT -type d -a "(" -name lib -o -name lib64 ")"` +libs=`find $RPM_BUILD_ROOT -type d \ + -a "(" -name lib -o -name lib64 ")" \ + -a ! "(" -path '*/usr/src/debug*' -o -path '*/usr/lib/debug*' ")" \ + ` if [ -n "$libs" -o -n "$EXTRA_LIBS_TO_SYMLINK" ]; then /sbin/ldconfig -n -N $libs $EXTRA_LIBS_TO_SYMLINK -- cgit v1.2.1