You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "William A. Rowe, Jr." <wr...@rowe-clan.net> on 2001/08/18 00:30:25 UTC

[PATCH] yank test-cgi.bat from unix build

Does this look right?

Index: build/binbuild.sh
===================================================================
RCS file: /home/cvs/httpd-2.0/build/binbuild.sh,v
retrieving revision 1.22
diff -u -r1.22 binbuild.sh
--- build/binbuild.sh 2001/04/15 00:44:44 1.22
+++ build/binbuild.sh 2001/08/17 22:26:43
@@ -194,13 +194,17 @@
   echo "echo \"Installing binary distribution for platform $OS\"" && \
   echo "echo \"into directory \$SR ...\"" && \
   echo "lmkdir \$SR 755" && \
+  echo "lmkdir \$SR/cgi-bin 750" && \
   echo "lmkdir \$SR/proxy 750" && \
   echo "lmkdir \$SR/logs 750" && \
   echo "lcopy bindist/man \$SR/man 755 644" && \
   echo "lcopy bindist/modules \$SR/modules 750 644" && \
   echo "lcopy bindist/include \$SR/include 755 644" && \
   echo "lcopy bindist/icons \$SR/icons 755 644" && \
-  echo "lcopy bindist/cgi-bin \$SR/cgi-bin 750 750" && \
+  echo "cp bindist/cgi-bin/printenv \$SR/cgi-bin/" && \
+  echo "cp bindist/cgi-bin/test-cgi \$SR/cgi-bin/" && \
+  echo "chmod 750 \$SR/cgi-bin/printenv" && \
+  echo "chmod 750 \$SR/cgi-bin/test-cgi" && \
   echo "lcopy bindist/bin \$SR/bin 750 750" && \
   echo "if [ -d \$SR/conf ]" && \
   echo "then" && \

If so, please apply :)

Bill