mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
check out common with right tag
Original commit message from CVS: check out common with right tag
This commit is contained in:
parent
de988971b5
commit
6ae04f0e3a
3 changed files with 12 additions and 8 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* autogen.sh: check out common with right tag if CVS/Tag exists
|
||||
|
||||
2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* testsuite/ghostpads/ghostpads.c: (main):
|
||||
|
|
|
@ -7,7 +7,11 @@ srcfile=gst/gst.c
|
|||
|
||||
# a quick cvs co to ease the transition
|
||||
if test ! -d common; then
|
||||
echo "+ getting common from cvs"; cvs co common
|
||||
if test -f CVS/Tag; then
|
||||
# get everything from CVS/Tag from second character on
|
||||
TAG="-r `tail -c +2 CVS/Tag`"
|
||||
fi
|
||||
echo "+ getting common from cvs"; cvs co $TAG common
|
||||
fi
|
||||
|
||||
# source helper functions
|
||||
|
|
|
@ -110,10 +110,6 @@ All GstElements can be serialized to an XML presentation and subsequently loaded
|
|||
|
||||
</para>
|
||||
|
||||
@:
|
||||
@:
|
||||
@:
|
||||
|
||||
@gstxml: the object which received the signal.
|
||||
@arg1:
|
||||
@arg2:
|
||||
|
@ -123,7 +119,7 @@ All GstElements can be serialized to an XML presentation and subsequently loaded
|
|||
|
||||
</para>
|
||||
|
||||
@gstxml: the object which received the signal.
|
||||
@arg1:
|
||||
@arg2:
|
||||
@:
|
||||
@:
|
||||
@:
|
||||
|
||||
|
|
Loading…
Reference in a new issue