diff options
author | marino <marino@FreeBSD.org> | 2013-07-15 14:05:44 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-07-15 14:05:44 +0800 |
commit | c4b26b87aa6ada9cc22e55a90accee7c4b912513 (patch) | |
tree | 6c24b47561974fc4b0720e6432ee2fc112e5dcaf /databases | |
parent | 88b8597d6dbe9083303deb94611a8de656c65743 (diff) | |
download | freebsd-ports-gnome-c4b26b87aa6ada9cc22e55a90accee7c4b912513.tar.gz freebsd-ports-gnome-c4b26b87aa6ada9cc22e55a90accee7c4b912513.tar.zst freebsd-ports-gnome-c4b26b87aa6ada9cc22e55a90accee7c4b912513.zip |
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)
Diffstat (limited to 'databases')
-rw-r--r-- | databases/sqsh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/sqsh/Makefile b/databases/sqsh/Makefile index 2f155700f4bc..4a08dc3f39e6 100644 --- a/databases/sqsh/Makefile +++ b/databases/sqsh/Makefile @@ -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 |