diff options
author | Korrawit Pruegsanusak <detective.conan.1412@gmail.com> | 2012-02-08 15:42:15 +0700 |
---|---|---|
committer | Korrawit Pruegsanusak <detective.conan.1412@gmail.com> | 2012-02-08 21:09:33 +0700 |
commit | 274772b5ae92f1f368f7102f1b1817a0cb106912 (patch) | |
tree | e49ac2ed24af96c4593bf7a98aced694fd2b801e /solenv | |
parent | a330f38093e2643a26239557050561afae9ff23d (diff) |
use $ENV{GNUMAKE} instead of constant 'make'
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/build.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl index 9d280d0e6e1a..e85f3e69792e 100755 --- a/solenv/bin/build.pl +++ b/solenv/bin/build.pl @@ -1514,10 +1514,10 @@ sub cancel_build { print STDERR "-----------------------------------------------------------------------\n"; print STDERR "To rebuild a specific module:\n"; print STDERR "\n"; - print STDERR "make $module.clean #optional\n"; - print STDERR "make $module\n"; + print STDERR "$ENV{GNUMAKE} $module.clean #optional\n"; + print STDERR "$ENV{GNUMAKE} $module\n"; print STDERR "\n"; - print STDERR "when the problem is isolated and fixed re-run 'make'\n"; + print STDERR "when the problem is isolated and fixed, re-run '$ENV{GNUMAKE}'\n"; zenity_message("LibreOffice Build Failed!"); zenity_close(); |