11 lines
233 B
Plaintext
11 lines
233 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# Run the config script as root because stuff breaks otherwise.
|
||
|
sls ./configure.sh config.in
|
||
|
|
||
|
# Change the SBINDIR to /bin to keep kiss happy
|
||
|
sed -i s/\\/sbin/\$DESTDIR/ Makefile
|
||
|
|
||
|
sls make
|
||
|
sls make DESTDIR="$1" install
|