Greetings all
Attached is a one-line patch that should fix make errors when specifying
CONFIG=sunpro.config.
--Andrew Black
Log
* sunpro.config: Fix mistake in comparison.
Index: etc/config/sunpro.config
===================================================================
--- etc/config/sunpro.config (revision 443009)
+++ etc/config/sunpro.config (working copy)
@@ -85,7 +85,7 @@
else
# wide (64-bit) flags -- must be set explicitly
# narrow (32-bit) flags are implicit on AMD64
- if ($(arch),amd64)
+ ifeq ($(arch),amd64)
wide_flags = -xarch=amd64
narrow_flags =
endif