svn commit: r323017 - head/databases/sqsh
John Marino
marino at FreeBSD.org
Mon Jul 15 06:05:45 UTC 2013
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
More information about the svn-ports-head
mailing list