diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-02-04 23:15:28 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-02-04 23:15:28 +0000 |
commit | ead35d317d782b7070d138167312496ada67e001 (patch) | |
tree | b5eaead35614bee517386a907b6519a3ababe381 /share | |
parent | 8eb9a5f9185f46c9a265557b721ff0ed20fb542e (diff) |
replace PKG_CONFIG_PATH with PKG_CONFIG_LIBDIR which replaces the
builtin search path instead of adding to it. Suggested by espie@
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.xorg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/mk/bsd.xorg.mk b/share/mk/bsd.xorg.mk index df431cb2e..729e6f427 100644 --- a/share/mk/bsd.xorg.mk +++ b/share/mk/bsd.xorg.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.xorg.mk,v 1.11 2006/12/31 16:00:03 matthieu Exp $ -*- makefile -*- +# $OpenBSD: bsd.xorg.mk,v 1.12 2007/02/04 23:15:27 matthieu Exp $ -*- makefile -*- # # Copyright © 2006 Matthieu Herrb # @@ -34,7 +34,7 @@ LIBDIR= ${X11BASE}/lib INCSDIR= ${X11BASE}/include MANDIR= ${X11BASE}/man/cat -PKG_CONFIG_PATH= ${X11BASE}/lib/pkgconfig +PKG_CONFIG_LIBDIR= ${X11BASE}/lib/pkgconfig # Autoconf cache _cache= --cache-file=${XENOCARA_OBJDIR}/xorg-config.cache.${MACHINE} @@ -44,7 +44,7 @@ CFLAGS+= $(COPTS) MAKE_ENV+= AUTOMAKE_VERSION="$(AUTOMAKE_VERSION)" \ AUTOCONF_VERSION="$(AUTOCONF_VERSION)" \ ACLOCAL="aclocal -I ${X11BASE}/share/aclocal" \ - PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" \ + PKG_CONFIG_LIBDIR="$(PKG_CONFIG_LIBDIR)" \ CFLAGS="$(CFLAGS:C/ *$//)" .if !target(.MAIN) |