Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Jul 2013 06:05:45 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r323017 - head/databases/sqsh
Message-ID:  <201307150605.r6F65jXJ063470@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Mon Jul 15 06:05:44 2013
New Revision: 323017
URL: http://svnweb.freebsd.org/changeset/ports/323017

Log:
  databases/sqsh: unbreak after USES= motif
  
  The makefile already had USES defined in it.  After replacing USE_MOTIF with
  "USES= motif", USES was overwritten losing its "readline" value.  Change the
  previous commit to "USES+= motif" to restore the build on platforms that
  need the ports readline.
  
  Approved by:	bapt (mentor)

Modified:
  head/databases/sqsh/Makefile

Modified: head/databases/sqsh/Makefile
==============================================================================
--- head/databases/sqsh/Makefile	Mon Jul 15 06:03:44 2013	(r323016)
+++ head/databases/sqsh/Makefile	Mon Jul 15 06:05:44 2013	(r323017)
@@ -29,7 +29,7 @@ PLIST_FILES=	bin/sqsh etc/sqshrc.default
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MX11}
-USES=		motif
+USES+=		motif
 CONFIGURE_ARGS+=	--with-motif --with-x
 .else
 PKGNAMESUFFIX=	-nox11



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