spawn-fcgi: fix install step

the makefile trues to copy a file that does not exist

Signed-off-by: John Crispin <blogic@openwrt.org>
This commit is contained in:
John Crispin 2015-03-29 10:37:30 +02:00
parent 66644f229e
commit 211dc655ed
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ endef
define Package/spawn-fcgi/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/spawn-fcgi $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/spawn-fcgi $(1)/usr/bin/
endef
$(eval $(call BuildPackage,spawn-fcgi))