mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
fix the whole cothread thing
Original commit message from CVS: fix the whole cothread thing
This commit is contained in:
parent
c2dc4b26c1
commit
a8a2afd14d
1 changed files with 11 additions and 8 deletions
19
autogen.sh
19
autogen.sh
|
@ -10,7 +10,7 @@ if test ! -d common; then
|
||||||
echo "+ getting common from cvs"; cvs co common
|
echo "+ getting common from cvs"; cvs co common
|
||||||
fi
|
fi
|
||||||
if test ! -d libs/ext/cothreads; then
|
if test ! -d libs/ext/cothreads; then
|
||||||
echo "+ getting cothreads from cvs"; cd libs/ext; cvs co cothreads
|
echo "+ getting cothreads from cvs"; cvs co -d libs/ext cothreads
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CONFIGURE_OPT='--enable-maintainer-mode --enable-plugin-builddir'
|
CONFIGURE_OPT='--enable-maintainer-mode --enable-plugin-builddir'
|
||||||
|
@ -186,13 +186,16 @@ automake -a -c || {
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
dnl echo
|
echo
|
||||||
dnl echo "+ running autogen.sh in libs/ext/cothreads..."
|
echo "+ running autogen.sh in libs/ext/cothreads..."
|
||||||
dnl pushd libs/ext/cothreads > /dev/null
|
pushd libs/ext/cothreads > /dev/null
|
||||||
dnl echo
|
echo
|
||||||
dnl ./autogen.sh --autogen-noconfigure --autogen-nocheck
|
./autogen.sh --autogen-noconfigure --autogen-nocheck || {
|
||||||
dnl popd > /dev/null
|
echo "autogen in cothreads failed."
|
||||||
dnl echo
|
exit 1
|
||||||
|
}
|
||||||
|
popd > /dev/null
|
||||||
|
echo
|
||||||
|
|
||||||
test -n "$NOCONFIGURE" && {
|
test -n "$NOCONFIGURE" && {
|
||||||
echo "skipping configure stage for package $package, as requested."
|
echo "skipping configure stage for package $package, as requested."
|
||||||
|
|
Loading…
Reference in a new issue