void-packages/templates/bash-runstuff-after-install.sh
Juan RP 17185fb761 bash: make /bin/sh symlink after install.
--HG--
extra : convert_revision : 73f6a4f20ed25500a11cd94ed532cbf395c582ed
2008-10-24 02:03:11 +02:00

8 lines
159 B
Bash

#
# Make /bin/bash -> /bin/sh symlink.
#
if [ -x $XBPS_DESTDIR/$pkgname-$version/bin/bash ]; then
cd $XBPS_DESTDIR/$pkgname-$version/bin && ln -s bash sh
fi