You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ra...@hyperreal.org on 1999/08/10 18:06:58 UTC

cvs commit: apache-1.3/src/helpers binbuild.sh

randy       99/08/10 09:06:57

  Modified:    src/helpers binbuild.sh
  Log:
  Fix some changed assumptions in config file format.
  
  Submitted by:	Tony Finch
  Reviewed by:	Randy Terbush
  
  Revision  Changes    Path
  1.12      +5 -4      apache-1.3/src/helpers/binbuild.sh
  
  Index: binbuild.sh
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/helpers/binbuild.sh,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- binbuild.sh	1999/05/02 16:44:24	1.11
  +++ binbuild.sh	1999/08/10 16:06:52	1.12
  @@ -222,7 +222,7 @@
     echo "	-e \"s;\@libexecdir\@;\$SR/libexec;\" -e \"s;\@includedir\@;\$SR/include;\" \\" && \
     echo "	-e \"s;\@sysconfdir\@;\$SR/conf;\" bindist/bin/apxs > \$SR/bin/apxs" && \
     echo "sed -e \"s;^#!/.*;#!\$PERL;\" bindist/bin/dbmmanage > \$SR/bin/dbmmanage" && \
  -  echo "sed -e \"s%/usr/local/apache%\$SR/%\" \$SR/conf/httpd.conf.default > \$SR/conf/httpd.conf" && \
  +  echo "sed -e \"s%/usr/local/apache%\$SR%\" \$SR/conf/httpd.conf.default > \$SR/conf/httpd.conf" && \
     echo "sed -e \"s%PIDFILE=%PIDFILE=\$SR/%\" -e \"s%HTTPD=%HTTPD=\\\"\$SR/%\" -e \"s%httpd\$%httpd -d \$SR\\\"%\" bindist/bin/apachectl > \$SR/bin/apachectl" && \
     echo " " && \
     echo "echo \"Ready.\"" && \
  @@ -246,9 +246,10 @@
   ) > install-bindist.sh
   chmod 755 install-bindist.sh
   
  -sed -e "s%\"/htdocs%\"/usr/local/apache/htdocs%" \
  -    -e "s%\"/icons%\"/usr/local/apache/icons%" \
  -    -e "s%\"/cgi-bin%\"/usr/local/apache/cgi-bin%" \
  +sed -e "s%\"htdocs%\"/usr/local/apache/htdocs%" \
  +    -e "s%\"icons%\"/usr/local/apache/icons%" \
  +    -e "s%\"cgi-bin%\"/usr/local/apache/cgi-bin%" \
  +    -e "s%\"proxy%\"/usr/local/apache/proxy%" \
       -e "s%^ServerAdmin.*%ServerAdmin you@your.address%" \
       -e "s%#ServerName.*%#ServerName localhost%" \
       -e "s%Port 8080%Port 80%" \