Alexandre Julliard : Makefile: Use 'git ls-files' instead of the deprecated 'git-ls-files' form.

Alexandre Julliard julliard at winehq.org
Mon Jul 7 09:19:13 CDT 2008


Module: wine
Branch: master
Commit: e43004ac40e466a8f1e062557abd7b28548a9f88
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e43004ac40e466a8f1e062557abd7b28548a9f88

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Jul  7 12:17:00 2008 +0200

Makefile: Use 'git ls-files' instead of the deprecated 'git-ls-files' form.

---

 Makefile.in |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index f2dbcfc..7ad6faa 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -141,11 +141,11 @@ $(TESTSUBDIRS:%=%/__crosstest__): tools include
 
 TAGS etags:
 	$(RM) TAGS
-	(test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs etags -a
+	(test -d .git && git ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs etags -a
 
 tags ctags:
 	$(RM) tags
-	(test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs ctags -a
+	(test -d .git && git ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs ctags -a
 
 manpages htmlpages sgmlpages: dummy
 	@cd documentation && $(MAKE) $@




More information about the wine-cvs mailing list