diff options
| author | Junio C Hamano <gitster@pobox.com> | 2017-12-06 09:23:37 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2017-12-06 09:23:38 -0800 |
| commit | 3fea5c5911919ab4c4abc333624ccbbacc2e54ef (patch) | |
| tree | 3ba40f7c7b028e9b4f8ef8314b5c929f22eab7dc /git-gui/Makefile | |
| parent | Merge branch 'cc/git-packet-pm' (diff) | |
| parent | Merge branch 'jn/reproducible-build' of ../git-gui into jn/reproducible-build (diff) | |
| download | git-3fea5c5911919ab4c4abc333624ccbbacc2e54ef.tar.gz git-3fea5c5911919ab4c4abc333624ccbbacc2e54ef.zip | |
Merge branch 'jn/reproducible-build'
The build procedure has been taught to avoid some unnecessary
instability in the build products.
* jn/reproducible-build:
generate-cmdlist: avoid non-deterministic output
git-gui: sort entries in optimized tclIndex
Diffstat (limited to 'git-gui/Makefile')
| -rw-r--r-- | git-gui/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-gui/Makefile b/git-gui/Makefile index 918a8de369..f10caedaa7 100644 --- a/git-gui/Makefile +++ b/git-gui/Makefile @@ -254,7 +254,7 @@ $(ALL_MSGFILES): %.msg : %.po lib/tclIndex: $(ALL_LIBFILES) GIT-GUI-VARS $(QUIET_INDEX)if echo \ $(foreach p,$(PRELOAD_FILES),source $p\;) \ - auto_mkindex lib '*.tcl' \ + auto_mkindex lib $(patsubst lib/%,%,$(sort $(ALL_LIBFILES))) \ | $(TCL_PATH) $(QUIET_2DEVNULL); then : ok; \ else \ echo >&2 " * $(TCL_PATH) failed; using unoptimized loading"; \ |
