From 91b63e49893b6f1d644e16db13040ebe279a2a7e Mon Sep 17 00:00:00 2001 From: axel Date: Mon, 31 Jul 2006 07:05:06 +1000 Subject: [PATCH] Make sure install-sh is executable in the Makefile darcs-hash:20060730210506-ac50b-9869e637a768aefd6ec7db33cec5f2defb29eb36.gz --- Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 0dc9e0c4b..e172daab6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -380,8 +380,12 @@ check-uninstall: fi; .PHONY: check-uninstall +install-sh: + if test ! -x install-sh; then chmod 755 install-sh; fi +.PHONY: install-sh + # Try to install after checking for incompatible installed versions -install: all check-uninstall install-force +install: all install-sh check-uninstall install-force .PHONY: install # Force installation, even in presense of incompatible previous