repo/core/dash/build

11 lines
143 B
Plaintext
Raw Permalink Normal View History

2024-01-23 21:38:23 +00:00
#!/bin/sh -e
export CFLAGS="$CFLAGS -static"
./configure \
--prefix=/usr
make DESTDIR="$1" install
ln -s /usr/bin/dash "$1/usr/bin/sh"