commit 211dc655ed1d0c3f1beae94a10672b9e955378c4
parent 66644f229eee8da311f215e58752a81334f694ae
Author: John Crispin <blogic@openwrt.org>
Date: Sun, 29 Mar 2015 10:37:30 +0200
spawn-fcgi: fix install step
the makefile trues to copy a file that does not exist
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/spawn-fcgi/Makefile b/net/spawn-fcgi/Makefile
@@ -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))