diff options
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -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! |
