diff options
author | rillig <rillig@pkgsrc.org> | 2008-01-27 16:10:25 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2008-01-27 16:10:25 +0000 |
commit | d22bebf3c80b4fd1ca8fa0d834cb8f95f3d19f7d (patch) | |
tree | 3751dc3a4e9594fefd35005fbea3b4c442ed50d0 | |
parent | afd4678e115f317fd5bb592c68c36dcc8c344414 (diff) | |
download | pkgsrc-d22bebf3c80b4fd1ca8fa0d834cb8f95f3d19f7d.tar.gz |
Set PKG_SUPPORTED_OPTIONS to an empty list if we are not on i386. Fixes
PR 37883.
-rw-r--r-- | x11/eterm/options.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/x11/eterm/options.mk b/x11/eterm/options.mk index 661dd24e2fe..63b8431f632 100644 --- a/x11/eterm/options.mk +++ b/x11/eterm/options.mk @@ -1,11 +1,12 @@ -# $NetBSD: options.mk,v 1.1 2005/06/01 19:44:07 wiz Exp $ +# $NetBSD: options.mk,v 1.2 2008/01/27 16:10:25 rillig Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.eterm .include "../../mk/bsd.prefs.mk" +PKG_SUPPORTED_OPTIONS= # none .if ${MACHINE_ARCH} == "i386" -PKG_SUPPORTED_OPTIONS= mmx +PKG_SUPPORTED_OPTIONS+= mmx .endif .include "../../mk/bsd.options.mk" |