summaryrefslogtreecommitdiffstats
path: root/build/binbuild.sh
diff options
context:
space:
mode:
authorRandy Terbush <randy@apache.org>1999-08-10 18:06:52 +0200
committerRandy Terbush <randy@apache.org>1999-08-10 18:06:52 +0200
commit946493435c19d3247bae400fa0ff82d8e09548c5 (patch)
tree08617b090796436b42fcfdc47a40280d98ef782d /build/binbuild.sh
parentUse <!--#include virtual="footer.html" --> like for header include (diff)
downloadapache2-946493435c19d3247bae400fa0ff82d8e09548c5.tar.xz
apache2-946493435c19d3247bae400fa0ff82d8e09548c5.zip
Fix some changed assumptions in config file format.
Submitted by: Tony Finch Reviewed by: Randy Terbush git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83638 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rwxr-xr-xbuild/binbuild.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/build/binbuild.sh b/build/binbuild.sh
index a7020fe984..0bbb28eefa 100755
--- a/build/binbuild.sh
+++ b/build/binbuild.sh
@@ -222,7 +222,7 @@ cp README.bindist ../apache_$VER-$OS.README
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 @@ cp README.bindist ../apache_$VER-$OS.README
) > 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%" \