diff options
author | bapt <bapt@FreeBSD.org> | 2013-10-18 22:00:34 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-10-18 22:00:34 +0800 |
commit | 92e7424f6bdaa42aeb22c45a25d707a056223c15 (patch) | |
tree | 124cef338b9a37ee3bc8ff02fb43e470ac8f70e4 /emulators | |
parent | f3bcb5899e47eb88d7628e95a8283811c8ec79a4 (diff) | |
download | freebsd-ports-gnome-92e7424f6bdaa42aeb22c45a25d707a056223c15.tar.gz freebsd-ports-gnome-92e7424f6bdaa42aeb22c45a25d707a056223c15.tar.zst freebsd-ports-gnome-92e7424f6bdaa42aeb22c45a25d707a056223c15.zip |
Fix a hidden bad usage of pkgconfig
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/mupen64-base/Makefile.common | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/mupen64-base/Makefile.common b/emulators/mupen64-base/Makefile.common index 51a2773d9e83..59a65760dc6e 100644 --- a/emulators/mupen64-base/Makefile.common +++ b/emulators/mupen64-base/Makefile.common @@ -9,7 +9,8 @@ EXTRACT_AFTER_ARGS= ${DISTNAME}/Makefile ${DISTNAME}/config.h \ .if defined(HAVE_GTK2) .include <${PORTSDIR}/Mk/bsd.gnome.mk> -USE_GNOME= pkgconfig gtk20 +USE_GNOME= gtk20 +USES+= pkgconfig .else .include <${PORTSDIR}/Mk/bsd.gnome.mk> USE_GNOME= gtk12 |