Commit ede46085c272f0358c175b557bb18375ed2af061

Authored by aurel32
1 parent 39b59763

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
Showing 1 changed file with 1 additions and 1 deletions
Makefile
... ... @@ -261,7 +261,7 @@ TAGS:
261 261  
262 262 cscope:
263 263 rm -f ./cscope.*
264   - find . -name "*.[ch]" -print > ./cscope.files
  264 + find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
265 265 cscope -b
266 266  
267 267 # documentation
... ...