diff options
author | Robert Nagy <robert@openbsd.org> | 2011-05-23 09:24:04 +0200 |
---|---|---|
committer | Robert Nagy <robert@openbsd.org> | 2011-05-23 09:25:00 +0200 |
commit | 85822219bc6baa7fc39e39bd4afbb780525c011d (patch) | |
tree | f0104936c903f9794a0fd8a86fa6955f2852d0e2 | |
parent | 61aec76dce123c83cf9b0e0159d655293133987e (diff) |
use $GNUMAKE to print the build instructions
-rwxr-xr-x | set_soenv.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/set_soenv.in b/set_soenv.in index b2d6bfd7a360..414dae21a1cb 100755 --- a/set_soenv.in +++ b/set_soenv.in @@ -86,7 +86,7 @@ my ( $oldPATH, $SRC_ROOT, $SO_HOME, $JAVA_HOME, $JDK, $JAVAFLAGS, $OOO_SHELL, $USE_DIRECTX5, $ATL_LIB, $ATL_INCLUDE, $MFC_LIB, $MFC_INCLUDE, $TMPDIR, $COMMON_BUILD_TOOLS, $WIN_GREP, $WIN_FIND, $WIN_LS, $WIN_GNUCOPY, $WIN_TOUCH, $MOZILLA_VERSION, $MOZILLA_TOOLKIT, $PREBUILD_MOZAB, $MOZILLABUILD, - $PROEXT, $TARFILE_LOCATION, + $PROEXT, $TARFILE_LOCATION, $GNUMAKE, $PYTHON, $SYSTEM_PYTHON, $SYSTEM_MOZILLA, $EPM_FLAGS); # #------------------------------------------- @@ -135,6 +135,7 @@ $GLIBC = ""; # Whether the platform uses glibc $PROEXT = "@PROEXT@"; $EPM_FLAGS = ""; $CL_X64 = '@CL_X64@'; +$GNUMAKE = "@GNUMAKE@"; # #-------------------------------------------------------------------- @@ -2191,10 +2192,10 @@ if ( $Warning ne "" ) print "*********************************************************". "******************* $newline"; -print "To build, issue:\nmake\n\n"; -print "To install when the build is finished, issue:\nmake install\n\n"; -print "If you want to develop LibreOffice, you might prefer:\nmake dev-install\n\n"; -print "If you want to run the smoketest, issue:\nmake check\n\n"; +print "To build, issue:\n$GNUMAKE\n\n"; +print "To install when the build is finished, issue:\n$GNUMAKE install\n\n"; +print "If you want to develop LibreOffice, you might prefer:\n$GNUMAKE dev-install\n\n"; +print "If you want to run the smoketest, issue:\n$GNUMAKE check\n\n"; $bootfile = "bootstrap"; open( OUT, ">$bootfile" ) || |