aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Mynott <steve.mynott@gmail.com>2018-07-30 10:46:00 +0100
committerSteve Mynott <steve.mynott@gmail.com>2018-07-30 10:46:00 +0100
commit7485def2063b80bc7d017fac48354d3b2fc05b28 (patch)
tree3e84341623244897bbcc95c1a3876c9dc4eb672f
parentf28a390364ecb27bb3e80b8d8a3ae4d5a430136a (diff)
unattempt windows fix
-rw-r--r--Configure.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure.pl b/Configure.pl
index 8710fe6..0627b2f 100644
--- a/Configure.pl
+++ b/Configure.pl
@@ -165,7 +165,7 @@ MAIN: {
$config{'cpsep'} = $^O eq 'MSWin32' ? ';' : ':';
$config{'shell'} = $^O eq 'MSWin32' ? 'cmd' : 'sh';
$config{'bat'} = $^O eq 'MSWin32' ? '.bat' : '';
- $config{'path'} = $^O ne 'MSWin32' ? 'sh -c "PATH=\'$(STAR_BIN_DIR):$(PATH)\'' : 'cmd /c "path ''$(STAR_BIN_DIR);$(PATH)'' && ';
+ $config{'path'} = $^O ne 'MSWin32' ? 'sh -c "PATH=\'$(STAR_BIN_DIR):$(PATH)\'' : 'cmd /c "path $(STAR_BIN_DIR);$(PATH) && ';
my $make = $config{'make'} = $^O eq 'MSWin32' ? 'nmake' : 'make';
my @prefixes = sort map substr($_, 0, 1), keys %backends;