diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2008-07-11 02:12:06 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-11 21:13:17 -0700 |
commit | b4f02d3509e8e4da0f115b9515d52daa02621db7 (patch) | |
tree | b82300b8ec9dce62b7fa94d759cd9591d68e01e7 /Makefile | |
parent | 6c98c0548aa3433ba64708ca8f08d44cd923f0b7 (diff) | |
download | git-b4f02d3509e8e4da0f115b9515d52daa02621db7.tar.gz git-b4f02d3509e8e4da0f115b9515d52daa02621db7.tar.xz |
make remove-dashes: apply to scripts and programs as well, not just to builtins
All programs and scripts are now moved outside PATH, so it's a good idea
not to use the dashed forms for them, either.
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1296,7 +1296,7 @@ check: common-cmds.h for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done remove-dashes: - ./fixup-builtins $(BUILT_INS) + ./fixup-builtins $(BUILT_INS) $(PROGRAMS) $(SCRIPTS) ### Installation rules |