diff options
Diffstat (limited to 'cygwin/ld2.in')
-rw-r--r-- | cygwin/ld2.in | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/cygwin/ld2.in b/cygwin/ld2.in index fb41257410..e69de29bb2 100644 --- a/cygwin/ld2.in +++ b/cygwin/ld2.in @@ -1,20 +0,0 @@ -#!/bin/sh -# -# ld wrapper for building dynamic lib version of perl; -# passes all args to perlld -# - -# miniperl is first candidate because it does not lock libperl.dll -for trythis in @buildpath@/miniperl @buildpath@/perl perl -do - if [ -x $trythis ] - then - $trythis @buildpath@/perlld "$@" - exit $? - fi -done -# hard luck! -echo I see no perl executable around here. Perl -echo is required to build dynamic libraries. Please -echo reinstall Perl or build this one with static. -exit 1 |