File: 1005_avoid_to_put_transcriber_in_background.patch

package info (click to toggle)
transcriber 1.5.1.1-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,484 kB
  • sloc: tcl: 13,141; ansic: 1,895; sh: 1,193; makefile: 75; xml: 66
file content (15 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: avoid putting transcriber in background when launching it
Author: Giulio Paci <giuliopaci@gmail.com>
Forwarded: yes
Last-Update: 2013-06-13
--- a/src/trans.in
+++ b/src/trans.in
@@ -12,7 +12,7 @@
  fi
 done
 if [ $bg = 1 ] ; then
-  exec @TK_EXEC_PREFIX@/bin/wish@SUFFIX@ @TRANS_TCL@/transcriber/tcl/Main.tcl -- ${1:+"$@"} &
+  exec @TK_EXEC_PREFIX@/bin/wish@SUFFIX@ @TRANS_TCL@/transcriber/tcl/Main.tcl -- ${1:+"$@"}
 else
   exec @TCL_EXEC_PREFIX@/bin/tclsh@SUFFIX@ @TRANS_TCL@/transcriber/tcl/Main.tcl -- ${1:+"$@"}
 fi