mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
668 B

static=0
for x in upx gzip sed kbd mplayer pciutils grep coreutils util-linux libgli lvp gawk bash findutils xfree86 ; do
[ "$pkg" == "$x" ] && static=1
done
if [ $static -eq 1 ] ; then
echo_status "Building this package statically for LVP"
var_append GCC_WRAPPER_APPEND " " "-static"
fi
if [ "$pkg" == "modutils" ] ; then
echo_status "Building this package statically for LVP"
var_append confopt " " "--enable-combined"
fi
for x in mplayer freeglut ; do
if [ "$pkg" == "$x" ] ; then
echo_status "Building this package statically for LVP"
var_append confopt " " "--enable-static"
fi
done
install_init () {
echo_status "stub called: install_init $@"
}