summaryrefslogtreecommitdiff
path: root/usr.sbin/httpd
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1998-03-31 20:01:35 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1998-03-31 20:01:35 +0000
commite66915e9d2df8d601cb4193c42c72243c0f6453b (patch)
treef283876d0a4fee42fdd33a04ca219efd50e46739 /usr.sbin/httpd
parent5b6bf68c55767edb0e86b7fe311b1d9f5e0487b7 (diff)
make it configure itself w/o 'x' on helpers/*
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r--usr.sbin/httpd/src/Configure14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.sbin/httpd/src/Configure b/usr.sbin/httpd/src/Configure
index 9b47e26d157..20af62be3f2 100644
--- a/usr.sbin/httpd/src/Configure
+++ b/usr.sbin/httpd/src/Configure
@@ -134,10 +134,10 @@ awk >>Makefile <$tmpfile '\
#
# Extract the rules.
#
-RULE_WANTHSREGEX=`./helpers/CutRule WANTHSREGEX $file`
-RULE_STATUS=`./helpers/CutRule STATUS $file`
-RULE_SOCKS4=`./helpers/CutRule SOCKS4 $file`
-RULE_IRIXNIS=`./helpers/CutRule IRIXNIS $file`
+RULE_WANTHSREGEX=`sh ./helpers/CutRule WANTHSREGEX $file`
+RULE_STATUS=`sh ./helpers/CutRule STATUS $file`
+RULE_SOCKS4=`sh ./helpers/CutRule SOCKS4 $file`
+RULE_IRIXNIS=`sh ./helpers/CutRule IRIXNIS $file`
#
# Now we determine the OS/Platform automagically, thanks to
@@ -154,7 +154,7 @@ RULE_IRIXNIS=`./helpers/CutRule IRIXNIS $file`
# add the required lines below.
#
-PLAT=`./helpers/GuessOS`
+PLAT=`sh ./helpers/GuessOS`
# Preset DBM_LIB. Can be overridden on a per-platform basis.
@@ -163,7 +163,7 @@ DBM_LIB="-ldbm"
#
# Look for ranlib. Do it early in case we want to override it below
#
-if ./helpers/PrintPath -s ranlib; then
+if sh ./helpers/PrintPath -s ranlib; then
RANLIB="ranlib"
else
RANLIB="true"
@@ -177,7 +177,7 @@ fi
for compilers in "gcc" "cc" "acc" "c89"
do
lookedfor="$lookedfor $compilers"
- if ./helpers/PrintPath -s $compilers; then
+ if sh ./helpers/PrintPath -s $compilers; then
COMPILER="$compilers"
break
fi