orca r3820 - in branches/gnome-2-22: . src/orca
- From: wwalker svn gnome org
- To: svn-commits-list gnome org
- Subject: orca r3820 - in branches/gnome-2-22: . src/orca
- Date: Mon, 7 Apr 2008 21:20:10 +0100 (BST)
Author: wwalker
Date: Mon Apr 7 21:20:09 2008
New Revision: 3820
URL: http://svn.gnome.org/viewvc/orca?rev=3820&view=rev
Log:
Fix for bug #525831 - isn't properly handling SIGTERM
Modified:
branches/gnome-2-22/ChangeLog
branches/gnome-2-22/src/orca/orca.in
Modified: branches/gnome-2-22/src/orca/orca.in
==============================================================================
--- branches/gnome-2-22/src/orca/orca.in (original)
+++ branches/gnome-2-22/src/orca/orca.in Mon Apr 7 21:20:09 2008
@@ -272,9 +272,13 @@
#
if [ `egrep -c "\-s|\-g|\-t|\-n|\-u|\-e|\-d" <<< $ARGS` -eq 0 ]
then
- runOrca "NO_CLEANUP"
+ runOrca "NO_CLEANUP" &
+ orca_pid=$!
+ wait $orca_pid
else
- runOrca
+ runOrca &
+ orca_pid=$!
+ wait $orca_pid
fi
fi
fi
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]