浏览代码

spawn-fcgi: fix install step

the makefile trues to copy a file that does not exist

Signed-off-by: John Crispin <blogic@openwrt.org>
John Crispin 10 年前
父节点
当前提交
211dc655ed
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      net/spawn-fcgi/Makefile

+ 1
- 1
net/spawn-fcgi/Makefile 查看文件

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