mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-20 10:51:48 +02:00
7 lines
181 B
Plaintext
7 lines
181 B
Plaintext
|
|
: ${PERL=perl}
|
||
|
|
$PERL -e 'use warnings' > /dev/null 2>&1 || {
|
||
|
|
echo 1>&2 "$0: configure did not find a usable version of Perl," \
|
||
|
|
"so skipping this test"
|
||
|
|
(exit 77); exit 77
|
||
|
|
}
|