diff options
author | gdt <gdt> | 2007-08-02 13:38:38 +0000 |
---|---|---|
committer | gdt <gdt> | 2007-08-02 13:38:38 +0000 |
commit | 6cda37430f289c59833b299f4f059b837ca280e3 (patch) | |
tree | e60f672760bb18f1b880afa72d85be7d052c41cb | |
parent | 7df06c1480f8faf1d9e4b10166b636aacf7026c1 (diff) | |
download | quagga-6cda37430f289c59833b299f4f059b837ca280e3.tar.bz2 quagga-6cda37430f289c59833b299f4f059b837ca280e3.tar.xz |
disable gmake workaround now that solaris directory is not built by
default
-rwxr-xr-x | README.NetBSD | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/README.NetBSD b/README.NetBSD index 0ecacb1b..23bc886c 100755 --- a/README.NetBSD +++ b/README.NetBSD @@ -1,17 +1,16 @@ #!/bin/sh -$Id: README.NetBSD,v 1.4 2007/08/02 13:23:57 gdt Exp $ +$Id: README.NetBSD,v 1.5 2007/08/02 13:38:38 gdt Exp $ # This file is helpful for building quagga from cvs on NetBSD, and # 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 |