svn commit: r307381 - head/x11/rxvt

Eitan Adler eadler at FreeBSD.org
Tue Nov 13 15:41:00 UTC 2012


Author: eadler
Date: Tue Nov 13 15:40:59 2012
New Revision: 307381
URL: http://svnweb.freebsd.org/changeset/ports/307381

Log:
  Avoid losing CONFIGURE_ARGS when utmp and wtmp are specified
  
  PR:		ports/173576
  Submitted by:	WATANABE Kazuhiro <CQG00620 at nifty.ne.jp>
  Feature safe:	yes

Modified:
  head/x11/rxvt/Makefile

Modified: head/x11/rxvt/Makefile
==============================================================================
--- head/x11/rxvt/Makefile	Tue Nov 13 15:29:31 2012	(r307380)
+++ head/x11/rxvt/Makefile	Tue Nov 13 15:40:59 2012	(r307381)
@@ -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}


More information about the svn-ports-head mailing list