[Libreoffice-commits] .: solenv/bin

Bjoern Michaelsen bmichaelsen at kemper.freedesktop.org
Tue Apr 5 08:48:50 PDT 2011


 solenv/bin/build.pl |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit 0f7c78e727fbb92672f02f600b7901f97e357533
Author: Bjoern Michaelsen <bjoern.michaelsen at canonical.com>
Date:   Tue Apr 5 17:44:47 2011 +0200

    hint at make -r for GNU make modules

diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl
index 38c81c7..8b653ba 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!");


More information about the Libreoffice-commits mailing list