-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't build on Win32 due to problems with backslashes in paths. #1247
Comments
From moc@coders-haven.netHi, --MoC |
From moc@coders-haven.nethas_gdbm => '0' |
From moc@coders-haven.netC:\GnuTools\MSYS\home\MoC\Parrot\bin\parrot.exe perl6_s1.pbc --target=pir src\gen_setting.pm > src\gen_setting.pir |
From @azawawiOn Sun Aug 23 10:25:03 2009, MoC wrote:
parrot's Configure.pl mishandles win32 backslashes in --prefix=prefix Thanks, |
From @azawawiConfigure.pl.patchdiff --git a/Configure.pl b/Configure.pl
index c589b6d..178a2d3 100644
--- a/Configure.pl
+++ b/Configure.pl
@@ -29,6 +29,8 @@ MAIN: {
if ($options{'gen-parrot'}) {
my @opts = @{ $options{'gen-parrot-option'} || [] };
my $prefix = $options{'gen-parrot-prefix'} || cwd()."/parrot_install";
+ # parrot's Configure.pl mishandles win32 backslashes in --prefix
+ $prefix =~ s{\\}{/}g;
my @command = ($^X, "build/gen_parrot.pl", "--prefix=$prefix", @opts);
print "Generating Parrot ...\n";
|
The RT System itself - Status changed from 'new' to 'open' |
From @azawawiOn Sun Aug 23 10:25:03 2009, MoC wrote:
parrot's Configure.pl mishandles win32 backslashes in --prefix=prefix Thanks, |
From @azawawiConfigure.pl.patchdiff --git a/Configure.pl b/Configure.pl
index c589b6d..178a2d3 100644
--- a/Configure.pl
+++ b/Configure.pl
@@ -29,6 +29,8 @@ MAIN: {
if ($options{'gen-parrot'}) {
my @opts = @{ $options{'gen-parrot-option'} || [] };
my $prefix = $options{'gen-parrot-prefix'} || cwd()."/parrot_install";
+ # parrot's Configure.pl mishandles win32 backslashes in --prefix
+ $prefix =~ s{\\}{/}g;
my @command = ($^X, "build/gen_parrot.pl", "--prefix=$prefix", @opts);
print "Generating Parrot ...\n";
|
From @moritzCommitted as a0c8a44eb4f1578f03bd7d521ee91ee75581a0a0, thanks for the Cheers, |
@moritz - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#68746 (status was 'resolved')
Searchable as RT68746$
The text was updated successfully, but these errors were encountered: