9 lines
137 B
Plaintext
9 lines
137 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--with-libedit
|
||
|
|
||
|
make DESTDIR="$1" install
|
||
|
ln -s /usr/bin/dash "$1/usr/bin/sh"
|