]> git.etc.gen.nz Git - spong.git/commitdiff
updated upgrade() to not install cgi program as .cgi
authorStephen L Johnson <sjohnson@monsters.org>
Mon, 7 Feb 2000 04:45:35 +0000 (04:45 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Mon, 7 Feb 2000 04:45:35 +0000 (04:45 +0000)
build

diff --git a/build b/build
index 8c89355bc9f525b72d378962e83c216b1f3cab0e..74b3312c0aa8a13ed787c47ab5f49089b1ec773f 100755 (executable)
--- 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.