home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 June
/
PCWorld_2005-06_cd.bin
/
software
/
vyzkuste
/
firewally
/
firewally.exe
/
framework-2.3.exe
/
ld2
< prev
next >
Wrap
Text File
|
2003-11-07
|
336b
|
18 lines
#!/bin/sh
#
# ld wrapper, passes all args to perlld;
#
for trythis in /usr/bin/perl
do
if [ -x $trythis ]
then
$trythis /usr/bin/perlld "$@"
exit $?
fi
done
# hard luck!
echo I see no perl executable around there
echo perl is required to build dynamic libraries
echo look if the path to perl in /bin/ld2 is correct
exit 1