diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-04-05 17:44:47 +0200 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-04-05 17:48:46 +0200 |
commit | c18c4c0f682d2f99daa32b3218b8b2d0d69e5f9b (patch) | |
tree | aa996efb84c58712d2bb590900f9ba67eef6bb2a /solenv/bin/build.pl | |
parent | 7fd8cb0312213b6088ad8a5ffed52c4f30f2b9e5 (diff) |
hint at make -r for GNU make modules
Diffstat (limited to 'solenv/bin/build.pl')
-rwxr-xr-x | solenv/bin/build.pl | 9 |
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!"); |