]> git.pld-linux.org Git - packages/thunderbird.git/blame - no-subshell.patch
- fix build with libnotify 0.7
[packages/thunderbird.git] / no-subshell.patch
CommitLineData
268e7766
ER
1--- iceweasel-3.0.10/mozilla/build/unix/run-mozilla.sh~ 2007-09-04 20:09:31.000000000 +0300
2+++ iceweasel-3.0.10/mozilla/build/unix/run-mozilla.sh 2009-05-05 19:20:55.718561642 +0300
3@@ -438,7 +438,8 @@
4 then
5 moz_debug_program ${1+"$@"}
6 else
7- moz_run_program ${1+"$@"}
8+ exec "$MOZ_PROGRAM" ${1+"$@"}
9+ # NORETURN
10 fi
11
12 exit $exitcode
13--- iceweasel-3.0.10/mozilla/build/unix/mozilla.in~ 2007-10-05 10:29:26.000000000 +0300
14+++ iceweasel-3.0.10/mozilla/build/unix/mozilla.in 2009-05-05 19:26:08.278322082 +0300
15@@ -135,8 +135,11 @@
16 if [ $debugging = 1 ]
17 then
18 echo $dist_bin/run-mozilla.sh $script_args $dist_bin/$MOZILLA_BIN "$@"
19+ "$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
20+else
21+ exec "$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
22+ # NORETURN
23 fi
24-"$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
25 exitcode=$?
26
27 exit $exitcode
This page took 0.025518 seconds and 4 git commands to generate.