Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20423
Added Files:
glibc_stage1
Log Message:
unfortunately the only way to get things working is, when we compile glibc
twice...
--- NEW FILE: glibc_stage1 ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/glibc_stage1,v $
# $Revision: 1.1 $
# $Date: 2004/10/12 01:12:19 $
#
# http://www.devil-linux.org
# you need the next line, otherwise script won't be executed !!!
# DL-build-system v3
### BEGIN INIT INFO
# Provides: glibc_stage1
# Required-Start: distcc prepare
# Required-Stop:
# Default-Start: 1
# Default-Stop:
# Description: description
### END INIT INFO
# get the directoryname of the script
MYDIR=${0%/*}
# source functions and config
source $MYDIR/settings
case $1 in
build )
cd $(find_src_dir glibc)
$MYDIR/glibc build
;;
* )
echo "ERROR ($0)"
echo "please add parameter so I know what to do"
exit 1
;;
esac
|