spawn-fcgi: fix install step
authorJohn Crispin <blogic@openwrt.org>
Sun, 29 Mar 2015 08:37:30 +0000 (10:37 +0200)
committerJohn Crispin <blogic@openwrt.org>
Sun, 29 Mar 2015 12:49:53 +0000 (14:49 +0200)
the makefile trues to copy a file that does not exist

Signed-off-by: John Crispin <blogic@openwrt.org>
net/spawn-fcgi/Makefile

index 2e83def7c0e737582cb90a06cbdeb675dceb2053..54c9ab764e719584649d7da353749c69a1ac690d 100644 (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))