aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.mk
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-02-20 20:06:29 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2014-02-20 20:06:29 +0100
commit8acfa51a8b3c6011483132c933213231f7a4865b (patch)
tree35962f3ad13ad4c874335a8c7ba47d6b9e754489 /cgit.mk
parentAdd a cache-snapshot-ttl configuration variable (diff)
downloadcgit-8acfa51a8b3c6011483132c933213231f7a4865b.tar.xz
cgit-8acfa51a8b3c6011483132c933213231f7a4865b.zip
Makefile: suppress pkg-config error
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'cgit.mk')
-rw-r--r--cgit.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit.mk b/cgit.mk
index 2e2992f..5048b09 100644
--- a/cgit.mk
+++ b/cgit.mk
@@ -31,7 +31,7 @@ ifdef NO_LUA
else
ifeq ($(LUA_PKGCONFIG),)
LUA_PKGCONFIG := $(shell for pc in luajit lua lua5.2 lua5.1; do \
- pkg-config --exists $$pc && echo $$pc && break; \
+ pkg-config --exists $$pc 2>/dev/null && echo $$pc && break; \
done)
LUA_MODE := autodetected
else