From: Stephen L Johnson Date: Mon, 7 Feb 2000 04:45:35 +0000 (+0000) Subject: updated upgrade() to not install cgi program as .cgi X-Git-Tag: spong-2_7-alpha5~100 X-Git-Url: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52ebfb910318df5d9124bb5d712d390965eb5139;p=spong.git updated upgrade() to not install cgi program as .cgi --- diff --git a/build b/build index 8c89355..74b3312 100755 --- a/build +++ b/build @@ -184,10 +184,10 @@ sub upgrade { # Put copies of the CGI program in the cgi-bin directory... ssystem( "mkdir -p $ICGIDIR" ) if ! -d $ICGIDIR; - ssystem( "cp ./cgi-bin/www-spong $ICGIDIR/www-spong.cgi" ); - ssystem( "cp ./cgi-bin/www-spong-ack $ICGIDIR/www-spong-ack.cgi" ); - ssystem( "chmod ugo+rwx,go-w $ICGIDIR/*spong*.cgi" ); - ssystem( "chown $WEBUSER $ICGIDIR/*spong*.cgi" ); + ssystem( "cp ./cgi-bin/www-spong $ICGIDIR/www-spong" ); + ssystem( "cp ./cgi-bin/www-spong-ack $ICGIDIR/www-spong-ack" ); + ssystem( "chmod ugo+rwx,go-w $ICGIDIR/*spong*" ); + ssystem( "chown $WEBUSER $ICGIDIR/*spong*" ); } # This removes all the generated files in the spong distrib directory.