aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorWhite_Rabbit <bruno@tracciabi.li>2017-12-15 11:56:31 +0100
committerWhite_Rabbit <bruno@tracciabi.li>2017-12-15 12:08:13 +0100
commitbd7dc7a9745b325f5ea8b2c23497335046b03990 (patch)
treef0f55a8c959e6ba57326266c284add3f69555d29 /Makefile
parent1a53f61998407013719fdabdcff4ead3e9715340 (diff)
downloadpurple-matrix-bd7dc7a9745b325f5ea8b2c23497335046b03990.tar.gz
[Makefile] Change fixed pkg-config into variable PKG_CONFIG
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 95c540b..97b88e9 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ LIBS=purple json-glib-1.0 glib-2.0
PKG_CONFIG=pkg-config
CFLAGS+=$(shell $(PKG_CONFIG) --cflags $(LIBS))
CFLAGS+=-fPIC -DPIC
-LDLIBS+=$(shell pkg-config --libs $(LIBS))
+LDLIBS+=$(shell $(PKG_CONFIG) --libs $(LIBS))
LDLIBS+=-lhttp_parser
PLUGIN_DIR_PURPLE = $(shell $(PKG_CONFIG) --variable=plugindir purple)