home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / ld2 < prev    next >
Text File  |  2005-01-27  |  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.