diff options
author | Sam James <sam@gentoo.org> | 2021-04-19 08:01:54 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-19 20:10:27 +0100 |
commit | 2b8de9ab38a948473222c55110b42997e65dea90 (patch) | |
tree | 2714938b0cd8feee5e21811417856fe2e5af0d7b /x11-plugins/docker/files | |
parent | x11-misc/skippy: respect PKG_CONFIG (diff) | |
download | gentoo-2b8de9ab38a948473222c55110b42997e65dea90.tar.gz gentoo-2b8de9ab38a948473222c55110b42997e65dea90.tar.bz2 gentoo-2b8de9ab38a948473222c55110b42997e65dea90.zip |
x11-plugins/docker: respect PKG_CONFIG
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-plugins/docker/files')
-rw-r--r-- | x11-plugins/docker/files/docker-1.5-makefile_rename.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-plugins/docker/files/docker-1.5-makefile_rename.patch b/x11-plugins/docker/files/docker-1.5-makefile_rename.patch index cf20a9135aa5..36cc92b00bf0 100644 --- a/x11-plugins/docker/files/docker-1.5-makefile_rename.patch +++ b/x11-plugins/docker/files/docker-1.5-makefile_rename.patch @@ -1,5 +1,5 @@ ---- a/Makefile 2015-01-19 20:10:47.762522964 +0100 -+++ b/Makefile 2015-01-19 20:11:11.463545692 +0100 +--- a/Makefile ++++ b/Makefile @@ -5,12 +5,10 @@ #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# @@ -33,7 +33,7 @@ - $(CC) $(CFLAGS) -L$(XLIBPATH) -lX11 \ - `pkg-config --libs glib-2.0` $^ -o $@ + $(CC) $(LDFLAGS) $(CFLAGS) $^ -lX11 \ -+ `pkg-config --libs glib-2.0` -o $@ ++ `${PKG_CONFIG} --libs glib-2.0` -o $@ %.o: %.c $(CC) -c $(CFLAGS) `pkg-config --cflags glib-2.0` $< |