blob: 225b3ec856e7f80c82184bca0a9c616d7e4e2e7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
# Run ldconfig to create symlinks to libraries.
#
# Copyright (C) 2000 by Frederic Lepied <flepied@mandrakesoft.com>
# Redistribution of this file is permitted under the terms of the GNU
# Public License (GPL)
if [ -z "$RPM_BUILD_ROOT" ]; then
exit 0
fi
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
fi
|