Browse Source

Changed Build-Pkg to flist lib32 and lib64 only if multilib is enabled

karasz/new-early
Christian Wiese 17 years ago
parent
commit
0b16472d9f
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      scripts/Build-Pkg

+ 7
- 1
scripts/Build-Pkg

@ -369,7 +369,13 @@ fi
# ---- Setting Build Variables
#
flistroot="bin boot etc lib lib64 sbin usr var opt"
# allowed toplevel directories that will be flisted
flistroot="bin boot etc lib sbin usr var opt"
# add lib32 and lib64 in the case the target has multilib support
if [ "$SDECFG_MULTILIB" = 1 ]; then
var_append flistroot ' ' "lib32 lib64"
fi
# remove the obvious noise: ldconfig and our /var/adm as well as due to
# rare i18n locale directories ...

Loading…
Cancel
Save