aboutsummaryrefslogtreecommitdiff
path: root/Configure.pl
diff options
context:
space:
mode:
authorSteve Mynott <steve.mynott@gmail.com>2016-04-29 22:22:33 +0100
committerSteve Mynott <steve.mynott@gmail.com>2016-04-29 22:22:33 +0100
commit87c3a4a4acbf43bfdcba71b049ad2807b8580668 (patch)
tree430e9537eacae2d0f7bf845df00af037d25a27d1 /Configure.pl
parent33799694290c06c62f414d3ffebdd1f7eb792654 (diff)
fix PATH for make modules-install under windows
Diffstat (limited to 'Configure.pl')
-rw-r--r--Configure.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure.pl b/Configure.pl
index 4fc8eb2..8ac9ee4 100644
--- a/Configure.pl
+++ b/Configure.pl
@@ -160,7 +160,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' ? '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;