summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-12-04 17:25:03 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-12-04 17:25:03 +0000
commit1c27b199e02b293054b6ff45f58bc82e873776da (patch)
tree749032de15102af125f05168f09b3d168453f67c
parente974fe9e3c3db8ce0d39aad1bfe92d6a9c793dce (diff)
downloadbuildsystem-1c27b199e02b293054b6ff45f58bc82e873776da.tar.gz
buildsystem-1c27b199e02b293054b6ff45f58bc82e873776da.tar.bz2
Fix broken macro
svn path=/trunk/tools/buildsystem/; revision=10970
-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