summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2008-02-23 16:03:37 +0000
committerTim-Philipp Müller <tim@centricular.net>2008-02-23 16:03:37 +0000
commit39bfee4a94bea13cd5c2e1e1ab733baaec16ccc4 (patch)
treeed8da399f26f7587296366791a1049f9cecab5c0
parent3060854ebb76000752e41c1c0ce045d6138fcffe (diff)
docs/README: Add a few lines about the new 'check-inspected-versions' target.
Original commit message from CVS: * docs/README: Add a few lines about the new 'check-inspected-versions' target.
-rw-r--r--ChangeLog5
m---------common0
-rw-r--r--docs/README8
3 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 62a3c3bd2d..a094c21b34 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-02-23 Tim-Philipp Müller <tim at centricular dot net>
+
+ * docs/README:
+ Add a few lines about the new 'check-inspected-versions' target.
+
2008-02-21 Stefan Kost <ensonic@users.sf.net>
* tests/check/gst/gstevent.c:
diff --git a/common b/common
-Subproject 2a19465fdb43a75f4d32950fd2beb1beb950eec
+Subproject a574e6214b06fcbdfc00e952e2f3edc06997ee9
diff --git a/docs/README b/docs/README
index d330a07d52..9bd2b92b13 100644
--- a/docs/README
+++ b/docs/README
@@ -302,6 +302,14 @@ in the various plugin packages.
web site updates.
- maintainer tricks:
+ - in gst-plugins-foo/docs/plugins/, run
+ make check-inspected-versions
+ to show plugins whose inspect information is not up-to-date (which is
+ usually either because they have been moved to a different module or
+ because they are not built on the maintainer's machine for some reason).
+ Whether it really makes sense to update the version number is debatable
+ (after all, the inspected information may be outdated and things may have
+ changed, in which case it would be bad to change the version number)
- find files that have docs
for file in `find . -name "*.c" -exec grep -l " * SECTION:element-" {} \; | sort`; do if [ -e ${file/.c/.h} ]; then echo ${file/.c/.h}; else echo "no header for $file"; fi; done
for file in `find . -name "*.cc" -exec grep -l " * SECTION:element-" {} \; | sort`; do if [ -e ${file/.cc/.h} ]; then echo ${file/.cc/.h}; else echo "no header for $file"; fi; done