bugfix in the build rules of package pkg_config

This commit is contained in:
Volker Grabsch 2008-11-08 20:51:21 +01:00
parent fcf318dbb5
commit d80aa0a7e3
1 changed files with 2 additions and 2 deletions

View File

@ -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