Browse Source

lib/functions.in: check if the path exists but it doesn't have to be a symlink explicitely

user/chris/test/lib64
Christian Wiese 13 years ago
parent
commit
b90c190f6c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/functions.in

+ 1
- 1
lib/functions.in

@ -800,7 +800,7 @@ createprefix_function() {
libdir)
# create lib -> lib64 compat symlinks
# TODO: MULTILIB
if [[ "$dir" = *lib64 ]] && [ ! -L "$root/$prefix/lib" ]; then
if [[ "$dir" = *lib64 ]] && [ ! -e "$root/$prefix/lib" ]; then
echo "Creating 'lib -> lib64' compatibility symlink"
ln -sf lib64 "$root/$prefix/lib"
fi

Loading…
Cancel
Save