[matroska] r1063 - trunk/libmatroska/make/linux
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mosu
Date: 2005-01-31 17:04:49 +0300 (Mon, 31 Jan 2005)
New Revision: 1063
Modified:
trunk/libmatroska/make/linux/check_ids
Log:
Also output the files/classes in which the duplicate IDs occur.
Modified: trunk/libmatroska/make/linux/check_ids
===================================================================
--- trunk/libmatroska/make/linux/check_ids 2005-01-31 13:54:26 UTC (rev 1062)
+++ trunk/libmatroska/make/linux/check_ids 2005-01-31 14:04:49 UTC (rev 1063)
@@ -9,4 +9,10 @@
awk '{ print $3 }' | \
sed -e 's/(//' -e 's/,//' | \
sort | \
- uniq -d
+ uniq -d | \
+( while read id ; do
+ echo ''
+ echo ${id}:
+ grep -i $id ../../src/*cpp
+ done )
+