Browse Source

spawn-fcgi: fix install step

the makefile trues to copy a file that does not exist

Signed-off-by: John Crispin <blogic@openwrt.org>
lilik-openwrt-22.03
John Crispin 10 years ago
parent
commit
211dc655ed
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      net/spawn-fcgi/Makefile

+ 1
- 1
net/spawn-fcgi/Makefile View File

@ -36,7 +36,7 @@ endef
define Package/spawn-fcgi/install define Package/spawn-fcgi/install
$(INSTALL_DIR) $(1)/usr/bin $(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 endef
$(eval $(call BuildPackage,spawn-fcgi)) $(eval $(call BuildPackage,spawn-fcgi))

Loading…
Cancel
Save