changeset 146:59aca9c070c9

bugfix in the build rules of package pkg_config
author Volker Grabsch <vog@notjusthosting.com>
date Sat, 08 Nov 2008 20:51:21 +0100
parents 53f68558e406
children f787c299f41c
files src/pkg_config.mk
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/pkg_config.mk	Sat Nov 08 20:35:38 2008 +0100
+++ b/src/pkg_config.mk	Sat Nov 08 20:51:21 2008 +0100
@@ -18,7 +18,7 @@
     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