~ chicken-core (chicken-5) d0a98ad13ad9ef7acc40382076c3098263886ffc
commit d0a98ad13ad9ef7acc40382076c3098263886ffc Author: Peter Bex <Peter.Bex@xs4all.nl> AuthorDate: Sat Sep 4 22:00:52 2010 +0200 Commit: Peter Bex <Peter.Bex@xs4all.nl> CommitDate: Sat Sep 4 22:00:52 2010 +0200 Don't be so sure that it's the system default. Also note that GNU Make might need to be installed diff --git a/Makefile b/Makefile index 3f54b623..072f3c75 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ all: - @echo "Sorry, Chicken can only be built with GNU make." + @echo "Sorry, Chicken can only be built with GNU Make." @echo "" - @echo "The '${MAKE}' command you just used is your system's default make" - @echo "program, which apparently is not GNU Make." + @echo "The '${MAKE}' command you just used is probably your system's" + @echo "default Make program, which apparently is not GNU Make." @echo "" - @echo "Try 'gmake' or 'gnumake' instead." + @echo "Try 'gmake' or 'gnumake' instead. If that doesn't work you'll" + @echo "probably need to install a package or build it yourself."Trap