Build Subversion 1.4.6 + Perl + OpenSSL 1.0
[msysgit.git] / bin / ld2
bloba8a9bb84b98d7a41600c011e548552a7b1c26f8d
1 #!/bin/sh
3 # ld wrapper for building dynamic lib version of perl;
4 # passes all args to perlld
7 # own miniperl is first candidate 'cause it doesn not lock libperl.dll
8 for trythis in /bin/miniperl.exe /bin/perl.exe
9 do
10 if [ -x $trythis ]
11 then
12 $trythis /bin/perlld "$@"
13 exit $?
15 done
16 # hard luck!
17 echo i see no perl executable around there
18 echo perl is required to build dynamic libraries
19 echo go fetch one or build this one static
20 exit 1