加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0002-Install-files-into-under-DESTDIR.patch 794 Bytes
一键复制 编辑 原始数据 按行查看 历史
weidongkl 提交于 2021-02-18 17:57 . Initial package
From: Bart Martens <bartm@knars.be>
Date: Sun, 20 May 2007 11:00:41 +0200
Subject: Install files into under $(DESTDIR).
This patch forces all installed files under $(DESTDIR) to cooperate
with Debian's build system.
---
Makefile.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile.in b/Makefile.in
index 6e46a93..69f68d7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -75,9 +75,9 @@ ztelnet : $(NAME)
install :
strip $(NAME)
- $(INSTALL) -m 0711 zssh @bindir@
- ln -f @bindir@/zssh @bindir@/ztelnet
- $(INSTALL) -m 0644 $(MANS) @mandir@/man1
+ $(INSTALL) -m 0711 zssh $(DESTDIR)/@bindir@
+ ln -f $(DESTDIR)/@bindir@/zssh $(DESTDIR)/@bindir@/ztelnet
+ $(INSTALL) -m 0644 $(MANS) $(DESTDIR)/@mandir@/man1
uninstall :
-cd @bindir@ && rm $(PRGS)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化