summaryrefslogtreecommitdiff
path: root/solenv/bin
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-05-04 00:29:04 +0200
committerNoel Power <noel.power@novell.com>2012-05-09 09:39:18 +0100
commitf4f4e3c050b117a8bfaa95a865b3b37bcb637516 (patch)
tree37a224082d2ae279ac747f01e56c91b386627435 /solenv/bin
parent4f01261a04b702819aba9966177abe601761103b (diff)
gbuild: use mixed paths on cygwin
make 3.82 understands mixed paths, so use them. This allows us to get rid of evil in BuildDirs.mk. Hopefully, life will be simpler now. Change-Id: I I I641f28c6af1948963f7004f8071af62e21caabb3
Diffstat (limited to 'solenv/bin')
-rwxr-xr-xsolenv/bin/build.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl
index 89a2557b9104..221893a07e8c 100755
--- a/solenv/bin/build.pl
+++ b/solenv/bin/build.pl
@@ -76,18 +76,6 @@
# #
#########################
- # This is to undo the EVIL in solenv/gbuild/BuildDirs.mk
- if ($ENV{OS_FOR_BUILD} eq 'WNT') {
- $ENV{WORKDIR} = `cygpath -m '$ENV{WORKDIR}'`;
- $ENV{OUTDIR} = `cygpath -m '$ENV{OUTDIR}'`;
- $ENV{OUTDIR_FOR_BUILD} = `cygpath -m '$ENV{OUTDIR_FOR_BUILD}'`;
- $ENV{SRCDIR} = `cygpath -m '$ENV{SRCDIR}'`;
- chomp($ENV{WORKDIR});
- chomp($ENV{OUTDIR});
- chomp($ENV{OUTDIR_FOR_BUILD});
- chomp($ENV{SRCDIR});
- }
-
my $modules_number++;
my $perl = 'perl';
my $remove_command = 'rm -rf';