diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-10-17 17:46:34 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-10-17 17:46:34 +0000 |
commit | 17a34b48733301ee4e5054e419edf8618905aa1d (patch) | |
tree | b904cf6ee688193415a6c2baa05e372120316ba4 /packages/patches | |
parent | a47b718b279f7fda8a5be3de08a524f40812683a (diff) |
checked in fix for when Pd launchs the browser directly. It needs to start it with an & so that Pd doesn't wait for it to finish
svn path=/trunk/; revision=8833
Diffstat (limited to 'packages/patches')
-rw-r--r-- | packages/patches/better_html_url_handling_on_linux-0.40.3.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/patches/better_html_url_handling_on_linux-0.40.3.patch b/packages/patches/better_html_url_handling_on_linux-0.40.3.patch index a2218071..e3aa8099 100644 --- a/packages/patches/better_html_url_handling_on_linux-0.40.3.patch +++ b/packages/patches/better_html_url_handling_on_linux-0.40.3.patch @@ -18,7 +18,7 @@ diff -u -w -r1.25 u_main.tk + set browser [lindex [auto_execok $candidate] 0] + if {[string length $browser]} { + puts stderr [format "%s %s" $browser $filename] -+ exec sh -c [format "%s %s" $browser $filename] ++ exec -- sh -c [format "%s %s" $browser $filename] & + break + } + } |