11 lines
233 B
Bash
Executable File
11 lines
233 B
Bash
Executable File
#!/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
|