mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 05:28:49 +00:00
Make sure install-sh is executable in the Makefile
darcs-hash:20060730210506-ac50b-9869e637a768aefd6ec7db33cec5f2defb29eb36.gz
This commit is contained in:
parent
89d876d0f7
commit
91b63e4989
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue