From: Vasco Almeida Date: Thu, 5 May 2016 17:46:32 +0000 (+0000) Subject: gitk: Makefile: create install bin directory X-Git-Tag: v2.12.0-rc0~77^2~10 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/944e1c8ede45b2d282c7431d7dcdc90ee47cbdd5?hp=--cc gitk: Makefile: create install bin directory Force creation of destination bin directory. Without this, gitk would fail to install if this directory didn't already exist. Signed-off-by: Vasco Almeida Signed-off-by: Paul Mackerras --- 944e1c8ede45b2d282c7431d7dcdc90ee47cbdd5 diff --git a/Makefile b/Makefile index 5acdc900ab..5bdd52a6eb 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,7 @@ endif all:: gitk-wish $(ALL_MSGFILES) install:: all + $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)' $(INSTALL) -m 755 gitk-wish '$(DESTDIR_SQ)$(bindir_SQ)'/gitk $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(msgsdir_SQ)' $(foreach p,$(ALL_MSGFILES), $(INSTALL) -m 644 $p '$(DESTDIR_SQ)$(msgsdir_SQ)' &&) true