diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2002-07-24 11:56:40 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2002-07-24 11:56:40 +0000 |
commit | 54e35773ec825eb32ce8839b3a74c32e00e292b5 (patch) | |
tree | fa0b81a4a4a41549ac8daf95393887a2f5b5ad6d | |
parent | 36b1425c71cf4f5a03cdddfadbcc48028f4e8ee9 (diff) | |
download | spec-helper-54e35773ec825eb32ce8839b3a74c32e00e292b5.tar spec-helper-54e35773ec825eb32ce8839b3a74c32e00e292b5.tar.gz spec-helper-54e35773ec825eb32ce8839b3a74c32e00e292b5.tar.bz2 spec-helper-54e35773ec825eb32ce8839b3a74c32e00e292b5.tar.xz spec-helper-54e35773ec825eb32ce8839b3a74c32e00e292b5.zip |
Fix for lib64 architectures
-rwxr-xr-x | lib_symlinks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_symlinks b/lib_symlinks index d06786e..8cef7d9 100755 --- a/lib_symlinks +++ b/lib_symlinks @@ -17,7 +17,7 @@ if [ -z "$RPM_BUILD_ROOT" ]; then exit 0 fi -libs=`find $RPM_BUILD_ROOT -name lib -a -type d` +libs=`find $RPM_BUILD_ROOT -type d -a "(" -name lib -o -name lib64 ")"` if [ -n "$libs" -o -n "$EXTRA_LIBS_TO_SYMLINK" ]; then /sbin/ldconfig -n -N $libs $EXTRA_LIBS_TO_SYMLINK |