summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:46 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:46 +0200
commit56187184e11b085b82584d3b088c62f427aae83c (patch)
tree8f8387e750a62581966900a42dade265d34c3146 /configure
parentd3a0d11f93c1ebe38b4301c9bef952bfd24d01a1 (diff)
tagging yhttpd-0.7.1yhttpd-0.7.1
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 4 insertions, 8 deletions
diff --git a/configure b/configure
index 9aab971..b1d4746 100755
--- a/configure
+++ b/configure
@@ -1,7 +1,8 @@
#!/bin/sh
-if ! ./scripts/checkperl.sh
+if ! which perl >/dev/null
then
+ echo You need to have Perl in your PATH
exit 1
fi
@@ -61,7 +62,7 @@ perl -e '
exit(1);
}
- system("perl \"scripts/config.pl\"");
+ system("sh -c \"scripts/config.sh\"");
chdir("src");
system("./configure ".join(" ", @ARGV));
chdir("..");
@@ -69,9 +70,4 @@ perl -e '
exit(0);
' `echo "$*" | sed "s/-//g"`
-if test -f err
-then
- rm -f err
-else
- echo You are ready to type gmake now!
-fi
+echo You are ready to type gmake now!