diff options
author | rezny <rezny@FreeBSD.org> | 2017-08-21 00:31:39 +0800 |
---|---|---|
committer | rezny <rezny@FreeBSD.org> | 2017-08-21 00:31:39 +0800 |
commit | 2141fb074054910e68b4bfe6247fd8d162c37855 (patch) | |
tree | 498881ad972e84c2047f14bcd20c2cc8a3180b50 /x11 | |
parent | d42a913e2571e1efe73fe878dcba272187890653 (diff) | |
download | freebsd-ports-gnome-2141fb074054910e68b4bfe6247fd8d162c37855.tar.gz freebsd-ports-gnome-2141fb074054910e68b4bfe6247fd8d162c37855.tar.zst freebsd-ports-gnome-2141fb074054910e68b4bfe6247fd8d162c37855.zip |
Build with reasonable defaults to avoid passing NULL to unprepared users.
Environment variables still take precedence. Without built-in defaults, NULL
will be returned if the environment is empty. Some consumers fail to check
for this condition and exhibit ill behavior.
While here, remove MAKE_JOBS_UNSAFE as nobody recalls why it was put there
originally and parallel builds work in all my test environments.
Reported by: tcberner
Diffstat (limited to 'x11')
-rw-r--r-- | x11/libxkbcommon/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/x11/libxkbcommon/Makefile b/x11/libxkbcommon/Makefile index d3aee2ac2e78..8ab6485edbc0 100644 --- a/x11/libxkbcommon/Makefile +++ b/x11/libxkbcommon/Makefile @@ -2,6 +2,7 @@ PORTNAME= libxkbcommon PORTVERSION= 0.7.1 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://xkbcommon.org/download/ @@ -14,15 +15,10 @@ XORG_CAT= lib USES= gmake bison tar:xz USE_XORG= xcb -MAKE_JOBS_UNSAFE= yes INSTALL_TARGET= install-strip -CONFIGURE_ARGS= --without-default-layout \ - --without-default-model \ - --without-default-options \ - --without-default-rules \ - --without-default-variant \ - --without-doxygen \ +CONFIGURE_ARGS= --without-doxygen \ + --with-default-rules="xorg" \ --with-x-locale-root=${PREFIX}/lib/X11/locale .include <bsd.port.mk> |