summaryrefslogtreecommitdiff
path: root/solenv/bin
diff options
context:
space:
mode:
authorChristian Dywan <christian.dywan@lanedo.com>2011-08-19 10:21:12 +0200
committerChristian Dywan <christian.dywan@lanedo.com>2011-08-19 15:54:26 +0200
commit1c923dc1dfbdb85ec8ae0f8fe260722fdd455d26 (patch)
tree7ebbeae57e80c296f68c8b96eceb153c7102a80d /solenv/bin
parent7a02f65534b27242780406d1532cd8ca93873de8 (diff)
Make clean instead of unxvlngi6.pro for gbuild modules
Diffstat (limited to 'solenv/bin')
-rwxr-xr-xsolenv/bin/build.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl
index 13e3ea7c64ab..7d5b4d83be6b 100755
--- a/solenv/bin/build.pl
+++ b/solenv/bin/build.pl
@@ -1507,17 +1507,18 @@ sub cancel_build {
}
print STDERR "-----------------------------------------------------------------------\n";
print STDERR "\n";
- print STDERR "rm -Rf " . $ENV{'SRC_ROOT'} . "/$module/" . $ENV{'INPATH'} . " # optional module 'clean'\n";
print STDERR "" . $ENV{'OOO_SHELL'} . "\n";
print STDERR "cd " . $ENV{'SRC_ROOT'} . "\n";
print STDERR "source ./" . $ENV{'ENV_SCRIPT'} . "\n";
print STDERR "cd $module\n";
if (is_gnumake_module($module))
{
+ print STDERR "$ENV{GNUMAKE} clean # optional\n";
print STDERR "$ENV{GNUMAKE} -r\n"
}
else
{
+ print STDERR "rm -Rf " . $ENV{'SRC_ROOT'} . "/$module/" . $ENV{'INPATH'} . " # optional module 'clean'\n";
print STDERR "build\n";
}
print STDERR "\n";