aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreadler <eadler@FreeBSD.org>2012-11-13 23:40:59 +0800
committereadler <eadler@FreeBSD.org>2012-11-13 23:40:59 +0800
commit6af764ec573360cdef1185cfb139e7daca47f5fc (patch)
treef3b3744dae2965ad9c3e69c57be79590936cb8e9
parent1383799b81b4095332db968c826bd873a7d398a4 (diff)
downloadfreebsd-ports-gnome-6af764ec573360cdef1185cfb139e7daca47f5fc.tar.gz
freebsd-ports-gnome-6af764ec573360cdef1185cfb139e7daca47f5fc.tar.zst
freebsd-ports-gnome-6af764ec573360cdef1185cfb139e7daca47f5fc.zip
Avoid losing CONFIGURE_ARGS when utmp and wtmp are specified
PR: ports/173576 Submitted by: WATANABE Kazuhiro <CQG00620@nifty.ne.jp> Feature safe: yes
-rw-r--r--x11/rxvt/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/rxvt/Makefile b/x11/rxvt/Makefile
index f7ebcce9e332..32983af90b48 100644
--- a/x11/rxvt/Makefile
+++ b/x11/rxvt/Makefile
@@ -46,9 +46,9 @@ MAKE_JOBS_SAFE= yes
# fails to build with new utmpx
.if ${OSVERSION} > 900007
-CONFIGURE_ARGS= --disable-utmp --disable-wtmp
+CONFIGURE_ARGS+= --disable-utmp --disable-wtmp
.else
-CONFIGURE_ARGS= --enable-utmp --enable-wtmp
+CONFIGURE_ARGS+= --enable-utmp --enable-wtmp
.endif
.if ${PORT_OPTIONS:MBIG5}