home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2005 March / PCWELT_3_2005.ISO / pcwsoft / framework-2.2.exe / ld2 < prev    next >
Encoding:
Text File  |  2003-11-07  |  336 b   |  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.