qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [5389] Fix cscope filelist by removing leading ./


From: Aurelien Jarno
Subject: [Qemu-devel] [5389] Fix cscope filelist by removing leading ./
Date: Wed, 01 Oct 2008 21:46:59 +0000

Revision: 5389
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5389
Author:   aurel32
Date:     2008-10-01 21:46:58 +0000 (Wed, 01 Oct 2008)

Log Message:
-----------
Fix cscope filelist by removing leading ./

(Ryan Harper, Laurent Desnogues)

Modified Paths:
--------------
    trunk/Makefile

Modified: trunk/Makefile
===================================================================
--- trunk/Makefile      2008-10-01 21:46:50 UTC (rev 5388)
+++ trunk/Makefile      2008-10-01 21:46:58 UTC (rev 5389)
@@ -261,7 +261,7 @@
 
 cscope:
        rm -f ./cscope.*
-       find . -name "*.[ch]" -print > ./cscope.files
+       find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
        cscope -b
 
 # documentation






reply via email to

[Prev in Thread] Current Thread [Next in Thread]