blob: 642938b255e91d0cb2386633658cf7949d2545c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# The yhttpd Project (2005)
#
# This scripts checks for a perl installation
if ! which perl >/dev/null
then
echo You need to have Perl in your PATH!
exit 1
fi
echo Using `which perl`
exit 0
|