mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-27 22:25:08 +02:00
7 lines
159 B
Bash
7 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
|