void-packages/templates/glibc.post_install
Juan RP c06defc719 Replace run_stuff with post/pre_<stage> variables.
If there's a file called "$pkgname.{pre,post}_{configure,build,install}
it will be automatically executed. In addition to this, templates may
use {pre,post}_{configure,build,install}_cmd variables to run arbitrary
commands.

--HG--
extra : convert_revision : 62ad549b8299689ecf8c833e73eda436ffdb7aa7
2008-10-27 03:56:42 +01:00

16 lines
529 B
Text

#
# Replace hardcoded path to bash.
# x86_64 arch: use /lib rather than /lib64 and make lib64 -> lib symlinks.
#
if [ -x $XBPS_DESTDIR/$pkgname-$version/usr/bin/ldd ]; then
sed -i -e "s,$XBPS_MASTERDIR/bin/bash,/bin/bash,g" \
$XBPS_DESTDIR/$pkgname-$version/usr/bin/ldd
fi
if [ "$xbps_machine" = "x86_64" ]; then
sed -i '/RTLDLIST/s%/ld-linux.so.2 /lib64%%' \
$XBPS_DESTDIR/$pkgname-$version/usr/bin/ldd
cd $XBPS_DESTDIR/$pkgname-$version && ln -s lib lib64
cd $XBPS_DESTDIR/$pkgname-$version/usr && ln -s lib lib64
fi