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 >
Text File  |  2003-11-07  |  336b  |  18 lines

  1. #!/bin/sh
  2. #
  3. # ld wrapper, passes all args to perlld;
  4. #
  5. for trythis in /usr/bin/perl
  6. do
  7.   if [ -x $trythis ]
  8.   then
  9.     $trythis /usr/bin/perlld "$@"
  10.     exit $?
  11.   fi
  12. done
  13. # hard luck!
  14. echo I see no perl executable around there
  15. echo perl is required to build dynamic libraries
  16. echo look if the path to perl in /bin/ld2 is correct
  17. exit 1
  18.