summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--makefiles/Makefile.pkgconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefiles/Makefile.pkgconfig b/makefiles/Makefile.pkgconfig
index c9bb8a1..14739bd 100644
--- a/makefiles/Makefile.pkgconfig
+++ b/makefiles/Makefile.pkgconfig
@@ -77,11 +77,11 @@ define pkg_config_package_add_flags
endif
ifneq ($(2),)
- $$($(2)) := $$($(2)) $$(shell $$(PKGCONFIG) --cflags $(1))
+ $(2) := $$($(2)) $$(shell $$(PKGCONFIG) --cflags $(1))
endif
ifneq ($(3),)
- $$($(3)) := $$($(3)) $$(shell $$(PKGCONFIG) --libs $(1))
+ $(3) := $$($(3)) $$(shell $$(PKGCONFIG) --libs $(1))
endif
endef