diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-02-20 20:06:29 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-02-20 20:06:29 +0100 |
commit | 8acfa51a8b3c6011483132c933213231f7a4865b (patch) | |
tree | 35962f3ad13ad4c874335a8c7ba47d6b9e754489 | |
parent | Add a cache-snapshot-ttl configuration variable (diff) | |
download | cgit-pink-8acfa51a8b3c6011483132c933213231f7a4865b.tar.gz cgit-pink-8acfa51a8b3c6011483132c933213231f7a4865b.zip |
Makefile: suppress pkg-config error
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r-- | cgit.mk | 2 |
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 |