]> git.puffer.fish Git - mirror/frr.git/commitdiff
disable gmake workaround now that solaris directory is not built by
authorGreg Troxel <gdt@fnord.ir.bbn.com>
Thu, 2 Aug 2007 13:38:38 +0000 (13:38 +0000)
committerGreg Troxel <gdt@fnord.ir.bbn.com>
Thu, 2 Aug 2007 13:38:38 +0000 (13:38 +0000)
default

README.NetBSD

index e541ec1e16c236d2dbc5c43c5bd46e8ba6c8368d..55e54af86c704ac22a2a346856a07f31879a36b2 100755 (executable)
@@ -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