From 9096074b75b49c995e41d05926c5fb5231e77585 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Tue, 26 Jan 2010 23:26:57 +0100 Subject: [PATCH] Make install arguments compatible with BSD install. --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8e1faf35e..35cf757ba 100644 --- a/Makefile +++ b/Makefile @@ -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)