From d7d7d533fb289d8ec4fa1b5fb02f927ed0cb90cc Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Thu, 7 Sep 2006 14:24:18 +0000 Subject: [PATCH] Fix to first problem causing Cygwin Perl to fail to build in a path with spaces in it. p4raw-id: //depot/perl@28803 --- cygwin/Makefile.SHs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 <