mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 01:31:03 +00:00
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.
This commit is contained in:
parent
3060854ebb
commit
39bfee4a94
3 changed files with 14 additions and 1 deletions
|
@ -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:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 2a19465fdb43a75f4d32950fd2beb1beb950eec2
|
||||
Subproject commit a574e6214b06fcbdfc00e952e2f3edc06997ee93
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue