Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8637/scripts
Modified Files:
poptop
Log Message:
Fixed pptpd problems.
Index: poptop
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/poptop,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- poptop 30 May 2004 17:51:18 -0000 1.5
+++ poptop 25 Oct 2004 19:35:48 -0000 1.6
@@ -30,6 +30,7 @@
case $1 in
build )
if [ "$CONFIG_PPP" = "y" ] && [ "$CONFIG_POPTOP" = "y" ]; then
+ replace_str ./plugins/patchlevel.h "2.4.3" "2.4.2"
./configure --prefix=/usr || exit 1
make $PMAKE all || exit 1
strip_debug
@@ -43,11 +44,11 @@
make install DESTDIR=$WORKDIR/tmp || exit 1
copy_docs $WORKDIR/tmp
mkdir -p $DOCDIR/pptpd || exit 1
- cp -dp ./html/* $DOCDIR/pptpd
+ #cp -dp ./html/* $DOCDIR/pptpd
copy_files $WORKDIR/tmp/usr $CDDIR || exit 1
- replace_str ./samples/pptpd.conf "#option /etc/ppp/options.pptpd" "option /etc/ppp/options.pptp"
+ #replace_str ./samples/pptpd.conf "#option /etc/ppp/options.pptpd" "option /etc/ppp/options.pptp"
cp -p ./samples/pptpd.conf $ETCDIR/etc || exit 1
- cp -p $MYDIR/scripts/options.pptp $ETCDIR/etc/ppp/options.pptp || exit 1
+ cp -p $MYDIR/scripts/options.pptp $ETCDIR/etc/ppp/options.pptpd || exit 1
cp $MYDIR/scripts/pptpd $ETCDIR/etc/init.d/
rm -rf $WORKDIR/tmp || exit 1
|