summaryrefslogtreecommitdiff
path: root/contrib/credential/gnome-keyring
diff options
context:
space:
mode:
authorHeiko Becker <heirecka@exherbo.org>2016-06-14 11:27:05 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-06-14 20:06:10 (GMT)
commit3cddb008c15978ae81ff144e24303467076d200f (patch)
tree31f10f42d355968e4d42034bff679a2cd9ca5bb9 /contrib/credential/gnome-keyring
parent765428699a5381f113d19974720bc91b5bfeaf1d (diff)
downloadgit-3cddb008c15978ae81ff144e24303467076d200f.zip
git-3cddb008c15978ae81ff144e24303467076d200f.tar.gz
git-3cddb008c15978ae81ff144e24303467076d200f.tar.bz2
gnome-keyring: Don't hard-code pkg-config executable
Helpful if your pkg-config executable has a prefix based on the architecture, for example. Signed-off-by: Heiko Becker <heirecka@exherbo.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/credential/gnome-keyring')
-rw-r--r--contrib/credential/gnome-keyring/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/credential/gnome-keyring/Makefile b/contrib/credential/gnome-keyring/Makefile
index c3c7c98..22c19df 100644
--- a/contrib/credential/gnome-keyring/Makefile
+++ b/contrib/credential/gnome-keyring/Makefile
@@ -4,12 +4,13 @@ all:: $(MAIN)
CC = gcc
RM = rm -f
CFLAGS = -g -O2 -Wall
+PKG_CONFIG = pkg-config
-include ../../../config.mak.autogen
-include ../../../config.mak
-INCS:=$(shell pkg-config --cflags gnome-keyring-1 glib-2.0)
-LIBS:=$(shell pkg-config --libs gnome-keyring-1 glib-2.0)
+INCS:=$(shell $(PKG_CONFIG) --cflags gnome-keyring-1 glib-2.0)
+LIBS:=$(shell $(PKG_CONFIG) --libs gnome-keyring-1 glib-2.0)
SRCS:=$(MAIN).c
OBJS:=$(SRCS:.c=.o)