Change 29427 by [EMAIL PROTECTED] on 2006/11/30 14:21:40

        -Dprefix failed on Cygwin unless the directory ${installbin} already
        existed prior to running make.

Affected files ...

... //depot/perl/cygwin/Makefile.SHs#19 edit

Differences ...

==== //depot/perl/cygwin/Makefile.SHs#19 (text) ====
Index: perl/cygwin/Makefile.SHs
--- perl/cygwin/Makefile.SHs#18~28803~  2006-09-07 07:24:18.000000000 -0700
+++ perl/cygwin/Makefile.SHs    2006-11-30 06:21:40.000000000 -0800
@@ -34,9 +34,10 @@
        @$sed s,@buildpath@,$addtopath,g <${src}/cygwin/ld2.in >ld2
        @chmod a+x ld2
        @echo "installing ld2 into $installbin"
-# install is included in Cygwin distributions, and we make a note of th
+# install is included in Cygwin distributions, and we make a note of the
 # requirement in the README.cygwin file. However, let's give them
 # a warning.
+       @test -d ${installbin} || mkdir -p ${installbin}
        @/usr/bin/install -c -m 755 ld2 ${installbin}/ld2
        @if test ! -f  ${installbin}/ld2; then \
                echo "*************************************************" ; \
End of Patch.

Reply via email to