diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-05-31 18:01:29 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-05-31 18:01:29 +0000 |
commit | 0c6d6a83ff990307af452ce9cf370cf32a78ef30 (patch) | |
tree | e69d809e2459b78492c1af1e28443b5dcfbdd0af /lib/xcb-util/image | |
parent | 165fb2bfdea2998f1b9f57124a0f56380a04f19d (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/image')
-rw-r--r-- | lib/xcb-util/image/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xcb-util/image/Makefile b/lib/xcb-util/image/Makefile index d50d6f464..f5a830af8 100644 --- a/lib/xcb-util/image/Makefile +++ b/lib/xcb-util/image/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 $ SUBLIB= image @@ -6,7 +6,7 @@ SRCS= xcb_image.c HEADERS= xcb_image.h xcb_pixel.h -LDADD!= pkg-config --libs xcb xcb-shm xcb-aux +LDADD= `pkg-config --libs xcb xcb-shm xcb-aux` .include <bsd.lib.mk> .include <bsd.xorg.mk> |