blob: 823999fc6e4a6c3e3763ccc31e7cbcc0f51a6cd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Description: hard code to Debian's /usr/bin/wish8.5
Force pd-gui.tcl to use /usr/bin/wish8.5 so that it always uses Tk 8.5
regardless of how the 'wish' alternatives are setup.
Author: Hans-Christoph Steiner <hans@eds.org>
--- pd-extended-0.43.4.orig/pd/tcl/pd-gui.tcl (revision 16941)
+++ pd-extended-0.43.4/pd/tcl/pd-gui.tcl (working copy)
@@ -1,6 +1,6 @@
#!/bin/sh
# This line continues for Tcl, but is a single line for 'sh' \
- exec wish "$0" -- ${1+"$@"}
+ exec /usr/bin/wish8.5 "$0" -- ${1+"$@"}
# For information on usage and redistribution, and for a DISCLAIMER OF ALL
# WARRANTIES, see the file, "LICENSE.txt," in this distribution.
# Copyright (c) 1997-2009 Miller Puckette.
|