summaryrefslogtreecommitdiff
path: root/solenv/bin/build.pl
diff options
context:
space:
mode:
Diffstat (limited to 'solenv/bin/build.pl')
-rwxr-xr-xsolenv/bin/build.pl21
1 files changed, 7 insertions, 14 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl
index 240923d56624..9d280d0e6e1a 100755
--- a/solenv/bin/build.pl
+++ b/solenv/bin/build.pl
@@ -1508,23 +1508,16 @@ sub cancel_build {
print STDERR " it seems that the error is inside '$module', please re-run build\n";
print STDERR " inside this module to isolate the error and/or test your fix:\n";
}
+ print STDERR "\n";
+ print STDERR "build_error.log should contain the captured output of the failed module(s)\n";
+ print STDERR "\n";
print STDERR "-----------------------------------------------------------------------\n";
+ print STDERR "To rebuild a specific module:\n";
print STDERR "\n";
- print STDERR "cd " . $ENV{'SRC_ROOT'} . "\n";
- print STDERR "source ./build_env\n";
- print STDERR "cd $module\n";
- if ($source_config->is_gbuild($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 "make $module.clean #optional\n";
+ print STDERR "make $module\n";
print STDERR "\n";
- print STDERR "when the problem is isolated and fixed exit and re-run 'make' from the top-level\n";
+ print STDERR "when the problem is isolated and fixed re-run 'make'\n";
zenity_message("LibreOffice Build Failed!");
zenity_close();