From: aurel32 Date: Wed, 1 Oct 2008 21:46:58 +0000 (+0000) Subject: Fix cscope filelist by removing leading ./ X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ede46085c272f0358c175b557bb18375ed2af061;p=qemu.git Fix cscope filelist by removing leading ./ (Ryan Harper, Laurent Desnogues) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5389 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/Makefile b/Makefile index d57f791482..35061a4b11 100644 --- a/Makefile +++ b/Makefile @@ -261,7 +261,7 @@ TAGS: cscope: rm -f ./cscope.* - find . -name "*.[ch]" -print > ./cscope.files + find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files cscope -b # documentation