From: Steve Peters Date: Thu, 7 Sep 2006 14:24:18 +0000 (+0000) Subject: Fix to first problem causing Cygwin Perl to fail to build X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d7d7d533fb289d8ec4fa1b5fb02f927ed0cb90cc;p=p5sagit%2Fp5-mst-13.2.git Fix to first problem causing Cygwin Perl to fail to build in a path with spaces in it. p4raw-id: //depot/perl@28803 --- diff --git a/cygwin/Makefile.SHs b/cygwin/Makefile.SHs index fb74a1b..52168a9 100644 --- a/cygwin/Makefile.SHs +++ b/cygwin/Makefile.SHs @@ -22,7 +22,7 @@ case $PERL_CONFIG_SH in ;; esac -addtopath=`pwd` +addtopath=`pwd | sed -e 's/ /\\\ /g'` $spitshell >>Makefile <