Skip to content

Commit

Permalink
Make install arguments compatible with BSD install.
Browse files Browse the repository at this point in the history
  • Loading branch information
nvie committed Jan 26, 2010
1 parent 6b95f21 commit 9096074
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Makefile
Expand Up @@ -7,11 +7,13 @@ all:
@echo "Use 'make install' explicitly to install git-flow."

install:
install -m 0755 -t $(GIT_EXEC_PATH) git-flow
install -m 0644 -t $(GIT_EXEC_PATH) \
install -d -m 0755 $(GIT_EXEC_PATH)
install -m 0755 git-flow $(GIT_EXEC_PATH)
install -m 0644 \
git-flow-feature \
git-flow-hotfix \
git-flow-release \
git-flow-support \
git-flow-version
git-flow-version \
$(GIT_EXEC_PATH)

0 comments on commit 9096074

Please sign in to comment.