2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

xfsprogs: Fix build when bash isn't installed. Closes #190

This commit is contained in:
Dylan Araps 2020-05-14 15:52:46 +03:00
parent e5ab47ad48
commit ab106da5be
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

View File

@ -1,12 +1,14 @@
#!/bin/sh -e
# Remove incorrect bash dependency.
sed -i 's/bash/sh/' install-sh
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--disable-gettext
make
make \
DIST_ROOT="$1" \
PKG_ROOT_SBIN_DIR=/usr/bin \