source: vendor/perl/5.8.8/cygwin/ld2.in

Last change on this file was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 473 bytes
Line 
1#!/bin/sh
2#
3# ld wrapper for building dynamic lib version of perl;
4# passes all args to perlld
5#
6
7# own miniperl is first candidate 'cause it doesn not lock libperl.dll
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!
17echo i see no perl executable around there
18echo perl is required to build dynamic libraries
19echo go fetch one or build this one static
20exit 1
Note: See TracBrowser for help on using the repository browser.