summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2012-05-12 16:59:50 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2012-05-12 16:59:50 +0000
commit29f791bb793077cdabc72c4f160948fa5afcf6da (patch)
tree5f37e752fa7fec10043e76810a9cdd82f73b6d4c /makefiles
parent600d72929c22309efa5aca4d40999e10e611f288 (diff)
downloadbuildsystem-29f791bb793077cdabc72c4f160948fa5afcf6da.tar.gz
buildsystem-29f791bb793077cdabc72c4f160948fa5afcf6da.tar.bz2
Fix package version extraction. Nothing appears to use this right now.
svn path=/trunk/tools/buildsystem/; revision=13918
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/Makefile.pkgconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefiles/Makefile.pkgconfig b/makefiles/Makefile.pkgconfig
index 14739bd..faf316a 100644
--- a/makefiles/Makefile.pkgconfig
+++ b/makefiles/Makefile.pkgconfig
@@ -24,7 +24,7 @@ define pkg_config_package_version
$$(error pkg-config is required to auto-detect package version)
endif
- $(1) := $$(shell $$(PKGCONFIG) --version $(2))
+ $(1) := $$(shell $$(PKGCONFIG) --modversion $(2))
endef