Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/pidgin-opensteamworks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2015-08-30 11:06:43 +0300
committerEion Robb <eion@robbmob.com>2015-08-30 11:06:43 +0300
commitd3a856c3970acf23faad2e11341dcafe45078135 (patch)
tree44a809a61e49e661cad2590fbe199d449c84b4b4
parent487941551120332dde0d5fef97bb06880a5523c8 (diff)
parent7df18035a7fe93054d443695c15262f168f42578 (diff)
Merge pull request #108 from flocke/master
Makefile: set pkg-config as variable
-rw-r--r--steam-mobile/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/steam-mobile/Makefile b/steam-mobile/Makefile
index 853f107..5c4ed38 100644
--- a/steam-mobile/Makefile
+++ b/steam-mobile/Makefile
@@ -1,8 +1,9 @@
COMPILER = gcc
+PKG_CONFIG ?= pkg-config
-LIBPURPLE_CFLAGS += $(shell pkg-config --cflags glib-2.0 json-glib-1.0 purple nss gnome-keyring-1)
-LIBPURPLE_LIBS += $(shell pkg-config --libs glib-2.0 json-glib-1.0 purple nss)
+LIBPURPLE_CFLAGS += $(shell ${PKG_CONFIG} --cflags glib-2.0 json-glib-1.0 purple nss gnome-keyring-1)
+LIBPURPLE_LIBS += $(shell ${PKG_CONFIG} --libs glib-2.0 json-glib-1.0 purple nss)
STEAM_SOURCES = \
steam_connection.c \