Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv15135/scripts
Added Files:
setserial
Log Message:
added setserial
--- NEW FILE: setserial ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/setserial,v $
# $Revision: 1.1 $
# $Date: 2003/10/10 21:19:26 $
#
# http://www.devil-linux.org
# get the directoryname of the script
MYDIR=${0%/*}
# source functions and config
source $MYDIR/settings
source $MYDIR/functions
case $1 in
build )
./configure --prefix=/usr --sysconfdir=/etc --disable-nls || exit 1
make $PMAKE all || exit 1
strip_debug
;;
install )
copy_man
cp -dp setserial $CDDIR/bin/ || exit 1
;;
* )
echo "ERROR ($0)"
echo "please add parameter so I know what to do"
exit 1
;;
esac
|