git-gui: Honor a config.mak in git-gui's top level
I keep forgetting to include TCLTK_PATH when I build git-gui on some systems. Placing that rule (among others) into a config.mak makes it easier to compile the application the same way every time. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
parent
82dd4e0465
commit
8621581248
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,5 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
|
config.mak
|
||||||
Git Gui.app*
|
Git Gui.app*
|
||||||
git-gui.tcl
|
git-gui.tcl
|
||||||
GIT-VERSION-FILE
|
GIT-VERSION-FILE
|
||||||
|
2
Makefile
2
Makefile
@ -99,6 +99,8 @@ ifeq ($(findstring $(MAKEFLAGS),s),s)
|
|||||||
QUIET_GEN =
|
QUIET_GEN =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
-include config.mak
|
||||||
|
|
||||||
DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
|
DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
|
||||||
gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
|
gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
|
||||||
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
|
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
|
||||||
|
Loading…
Reference in New Issue
Block a user