summaryrefslogtreecommitdiff
path: root/solenv/bin/build.pl
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-04-05 17:44:47 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-04-05 17:48:46 +0200
commitc18c4c0f682d2f99daa32b3218b8b2d0d69e5f9b (patch)
treeaa996efb84c58712d2bb590900f9ba67eef6bb2a /solenv/bin/build.pl
parent7fd8cb0312213b6088ad8a5ffed52c4f30f2b9e5 (diff)
hint at make -r for GNU make modules
Diffstat (limited to 'solenv/bin/build.pl')
-rwxr-xr-xsolenv/bin/build.pl9
1 files changed, 8 insertions, 1 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl
index a840923b6e0f..82afcf0db17a 100755
--- a/solenv/bin/build.pl
+++ b/solenv/bin/build.pl
@@ -1714,7 +1714,14 @@ sub cancel_build {
print STDERR "cd " . $ENV{'SRC_ROOT'} . "\n";
print STDERR "source ./" . $ENV{'ENV_SCRIPT'} . "\n";
print STDERR "cd $module\n";
- print STDERR "build\n";
+ if (is_gnumake_module($module))
+ {
+ print STDERR "make -r\n"
+ }
+ else
+ {
+ print STDERR "build\n";
+ }
print STDERR "\n";
print STDERR "when the problem is isolated and fixed exit and re-run 'make' from the top-level\n";
zenity_message("LibreOffice Build Failed!");