diff options
author | Juan RP <xtraeme@gmail.com> | 2015-01-13 14:51:01 +0000 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2015-01-13 14:51:01 +0000 |
commit | 3735ead3dc356e4d0a123e55041fb70bb6ec8226 (patch) | |
tree | a893e18af2f6cdf619997845ce27a7a559891d62 /common/hooks/pre-pkg | |
parent | f529aa306245cf0e3565c7a730b0d95310c07503 (diff) | |
download | void-packages-3735ead3dc356e4d0a123e55041fb70bb6ec8226.tar void-packages-3735ead3dc356e4d0a123e55041fb70bb6ec8226.tar.gz void-packages-3735ead3dc356e4d0a123e55041fb70bb6ec8226.tar.bz2 void-packages-3735ead3dc356e4d0a123e55041fb70bb6ec8226.tar.lz void-packages-3735ead3dc356e4d0a123e55041fb70bb6ec8226.tar.xz void-packages-3735ead3dc356e4d0a123e55041fb70bb6ec8226.tar.zst void-packages-3735ead3dc356e4d0a123e55041fb70bb6ec8226.zip |
hooks/prepare-32bit: subst /usr/lib to /usr/lib32 in lib32files.
Diffstat (limited to 'common/hooks/pre-pkg')
-rw-r--r-- | common/hooks/pre-pkg/05-prepare-32bit.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/hooks/pre-pkg/05-prepare-32bit.sh b/common/hooks/pre-pkg/05-prepare-32bit.sh index 106a0f380d4..2cc6c6ed7ca 100644 --- a/common/hooks/pre-pkg/05-prepare-32bit.sh +++ b/common/hooks/pre-pkg/05-prepare-32bit.sh @@ -149,8 +149,8 @@ hook() { for f in ${lib32files}; do echo "$pkgver: installing additional files: $f ..." _targetdir=${destdir32}/$(dirname ${f}) - mkdir -p ${_targetdir} - cp -a ${PKGDESTDIR}/${f} ${_targetdir} + mkdir -p ${_targetdir/\/usr\/lib/\/usr\/lib32} + cp -a ${PKGDESTDIR}/${f} ${_targetdir/\/usr\/lib/\/usr\/lib32} done # If it's a development pkg add a dependency to the 64bit pkg. if [[ $pkgname =~ '-devel' ]]; then |