From: John Crispin Date: Sun, 29 Mar 2015 08:37:30 +0000 (+0200) Subject: spawn-fcgi: fix install step X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=211dc655ed1d0c3f1beae94a10672b9e955378c4;p=openwrt-packages.git spawn-fcgi: fix install step the makefile trues to copy a file that does not exist Signed-off-by: John Crispin --- diff --git a/net/spawn-fcgi/Makefile b/net/spawn-fcgi/Makefile index 2e83def7c..54c9ab764 100644 --- 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))