Browse Source

fhs: fixed to only create a lib32 dir if multilib is enabled

user/chris/0.1.0/grsecurity
Christian Wiese 14 years ago
parent
commit
bde283b3a0
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      base/fhs/fhs-3-lib.sh

+ 3
- 1
base/fhs/fhs-3-lib.sh

@ -23,7 +23,9 @@ for x in '' 'usr/' 'usr/local/'; do
if [ -z "$lib" ]; then
echo "m ${x}lib"
else
echo "m ${x}lib32"
if [ "$SDECFG_MULTILIB" = 1 ]; then
echo "m ${x}lib32"
fi
echo "m ${x}lib64"
echo "l ${x}lib $lib"
fi

Loading…
Cancel
Save