diff options
author | rakuco <rakuco@FreeBSD.org> | 2014-07-06 03:32:50 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2014-07-06 03:32:50 +0800 |
commit | 4b2de115b6cc74c11f705d6ac005b8f328b8136a (patch) | |
tree | 537e7ea3a79db8d799f631fdd2cebe6bcbdaa32d | |
parent | 3949e40ead0ffb6f3bba8c0623190909d8f9981f (diff) | |
download | freebsd-ports-gnome-4b2de115b6cc74c11f705d6ac005b8f328b8136a.tar.gz freebsd-ports-gnome-4b2de115b6cc74c11f705d6ac005b8f328b8136a.tar.zst freebsd-ports-gnome-4b2de115b6cc74c11f705d6ac005b8f328b8136a.zip |
Fix the way --with-mmx is passed to configure.
<OPTION>_CONFIGURE_ARGS does not exist, so the option was not being passed
at all. We need <OPTION>_CONFIGURE_WITH here.
CR: D357
Approved by: olgeni (maintainer)
-rw-r--r-- | x11/eterm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/eterm/Makefile b/x11/eterm/Makefile index 9ebfce4cf9ea..ea139bd6cda8 100644 --- a/x11/eterm/Makefile +++ b/x11/eterm/Makefile @@ -3,7 +3,7 @@ PORTNAME= eterm PORTVERSION= 0.9.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES+= x11 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Eterm-${PORTVERSION} DISTNAME= Eterm-${PORTVERSION} @@ -30,7 +30,7 @@ USE_XORG= x11 xt OPTIONS_DEFINE= DOCS OPTIONS_DEFINE_i386= MMX -MMX_CONFIGURE_ARGS= --enable-mmx +MMX_CONFIGURE_WITH= mmx post-patch: @${FIND} ${WRKSRC} -name '*.orig' -delete |