summaryrefslogtreecommitdiff
path: root/set_soenv.in
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@novell.com>2011-09-09 16:40:36 +0100
committerMichael Meeks <michael.meeks@novell.com>2011-09-10 16:52:06 +0200
commitf2cc639131e62187a51b39555a24efc47b87fb13 (patch)
treee16c52092424de4184f0cd84f30ce0f48b279866 /set_soenv.in
parent47289a6a80706577ba28238c2e82315f0604e3ef (diff)
Add detection of stale / slow makes (for Windows) and warn about them.
Diffstat (limited to 'set_soenv.in')
-rwxr-xr-xset_soenv.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/set_soenv.in b/set_soenv.in
index 0717241e5146..852818454db7 100755
--- a/set_soenv.in
+++ b/set_soenv.in
@@ -2089,6 +2089,18 @@ 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";
+if ("@STALE_MAKE@" eq "TRUE" && $platform =~ m/cygwin/ ) {
+print << 'EOS'
+WARNING:
+Your make version is known to be horribly slow, and hard to debug
+problems with. To get a reasonably functional make please run:
+
+$ <three commands to be supplied by Norbert>
+
+before building.
+EOS
+}
+
$bootfile = "bootstrap";
open( OUT, ">$bootfile" ) ||
die "Cannot open $bootfile: $!\n";