diff options
author | gdt <gdt> | 2007-08-02 13:38:38 +0000 |
---|---|---|
committer | gdt <gdt> | 2007-08-02 13:38:38 +0000 |
commit | b39b27d6d5d4fc92c56eafcad655bc06b4a04c58 (patch) | |
tree | 17ab4fb8f928305efe53b6dc416fb2c9cf8b5b7e | |
parent | 6b4c3866a412d260b3c0af267495fe13cbeee0cf (diff) | |
download | quagga-b39b27d6d5d4fc92c56eafcad655bc06b4a04c58.tar.bz2 quagga-b39b27d6d5d4fc92c56eafcad655bc06b4a04c58.tar.xz |
disable gmake workaround now that solaris directory is not built by
default
-rwxr-xr-x | README.NetBSD | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/README.NetBSD b/README.NetBSD index e541ec1e..55e54af8 100755 --- a/README.NetBSD +++ b/README.NetBSD @@ -6,12 +6,11 @@ $Id$ # probably on any system using pkgsrc. # One should have readline installed already (pkgsrc/devel/readline). -# Quagga is currently documented not to require GNU make, but the -# contents of solaris seem to require it. - -if true; then +# Quagga is currently documented not to require GNU make, but sometimes +# BSD make fails. Enable this if statement as a workaround. +if false; then MAKE=gmake - echo "WARNING: using gmake to work around buggy solaris/Makefile.am" + echo "WARNING: using gmake to work around nonportable makefiles" fi case $1 in @@ -33,5 +32,11 @@ case $1 in clean) make clean + ;; + + *) + echo "Illegal command $1" + exit 1 + ;; esac |