Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Nov 2012 15:40:59 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r307381 - head/x11/rxvt
Message-ID:  <201211131540.qADFex6s072034@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211131540.qADFex6s072034>