summaryrefslogtreecommitdiffstats
path: root/src/pkg_config.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2008-11-08 19:51:21 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2008-11-08 19:51:21 (GMT)
commitd80aa0a7e353849fc74d1e2bb3cf12bdab86d85e (patch)
tree4d28c2bdc42c941a8a8e0474a9884963a9bc6d34 /src/pkg_config.mk
parentfcf318dbb58c3d483d3cb41f386e8bf08b941e01 (diff)
downloadmxe-d80aa0a7e353849fc74d1e2bb3cf12bdab86d85e.zip
mxe-d80aa0a7e353849fc74d1e2bb3cf12bdab86d85e.tar.gz
mxe-d80aa0a7e353849fc74d1e2bb3cf12bdab86d85e.tar.bz2
bugfix in the build rules of package pkg_config
Diffstat (limited to 'src/pkg_config.mk')
-rw-r--r--src/pkg_config.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg_config.mk b/src/pkg_config.mk
index aa15f99..19fb22e 100644
--- a/src/pkg_config.mk
+++ b/src/pkg_config.mk
@@ -18,7 +18,7 @@ define $(PKG)_BUILD
cd '$(1)' && ./configure \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
- install -d '$(PREFIX)/$(TARGET)'
- rm -f '$(PREFIX)/bin/$(TARGET)-pkg-config'
+ install -d '$(PREFIX)/bin'
+ rm -f '$(PREFIX)/bin/$(TARGET)-pkg-config'
ln -s '../$(TARGET)/bin/pkg-config' '$(PREFIX)/bin/$(TARGET)-pkg-config'
endef