change #31615 added the new field in the wrong place
[p5sagit/p5-mst-13.2.git] / cygwin / ld2.in
CommitLineData
8736538c 1#!/bin/sh
2#
3# ld wrapper for building dynamic lib version of perl;
4# passes all args to perlld
5#
6
454fb80f 7# miniperl is first candidate because it does not lock libperl.dll
8736538c 8for trythis in @buildpath@/miniperl @buildpath@/perl perl
9do
10 if [ -x $trythis ]
11 then
12 $trythis @buildpath@/perlld "$@"
13 exit $?
14 fi
15done
16# hard luck!
454fb80f 17echo I see no perl executable around here. Perl
18echo is required to build dynamic libraries. Please
19echo reinstall Perl or build this one with static.
8736538c 20exit 1