summaryrefslogtreecommitdiff
path: root/lib/xcb-util/renderutil
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2009-05-31 18:01:29 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2009-05-31 18:01:29 +0000
commit0c6d6a83ff990307af452ce9cf370cf32a78ef30 (patch)
treee69d809e2459b78492c1af1e28443b5dcfbdd0af /lib/xcb-util/renderutil
parent165fb2bfdea2998f1b9f57124a0f56380a04f19d (diff)
Don't use != to call pkg-config in Makefiles. It's slow and generates
tons of warnings if stuff isn't installed yet.
Diffstat (limited to 'lib/xcb-util/renderutil')
-rw-r--r--lib/xcb-util/renderutil/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xcb-util/renderutil/Makefile b/lib/xcb-util/renderutil/Makefile
index 9096ec34a..dbf2d1b7c 100644
--- a/lib/xcb-util/renderutil/Makefile
+++ b/lib/xcb-util/renderutil/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.1 2009/05/23 14:43:12 matthieu Exp $
+# $OpenBSD: Makefile,v 1.2 2009/05/31 18:01:28 matthieu Exp $
LIB= xcb-render-util
@@ -8,7 +8,7 @@ SRCS= cache.c glyph.c util.c
HEADERS= xcb_renderutil.h
-LDADD!= pkg-config --libs xcb xcb-render
+LDADD= `pkg-config --libs xcb xcb-render`
.include <bsd.lib.mk>
.include <bsd.xorg.mk>