You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
2.8 KiB
Plaintext
103 lines
2.8 KiB
Plaintext
3 years ago
|
#!/bin/bash
|
||
|
# Build script for Slackware
|
||
3 years ago
|
"
|
||
|
if type -p fakeroot ; then
|
||
|
echo "$PACKAGING" | fakeroot
|
||
|
else
|
||
|
su -c "$PACKAGING"
|
||
|
fi
|