]> git.pld-linux.org Git - packages/mozilla-firefox-bin.git/blob - nochilds.patch
- up to 32.0
[packages/mozilla-firefox-bin.git] / nochilds.patch
1 --- mozilla-firefox-bin-3.6.8/firefox   2010-07-23 01:31:13.000000000 +0300
2 +++ mozilla-firefox-bin-3.6.8/firefox   2010-08-18 10:26:59.365912397 +0300
3 @@ -135,8 +135,11 @@
4  if [ $debugging = 1 ]
5  then
6    echo $dist_bin/run-mozilla.sh $script_args $dist_bin/$MOZILLA_BIN "$@"
7 +  "$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
8 +else
9 +  exec "$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
10 +  # NORETURN
11  fi
12 -"$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
13  exitcode=$?
14  
15  exit $exitcode
16 --- mozilla-firefox-bin-3.6.8/run-mozilla.sh    2010-07-23 01:31:13.000000000 +0300
17 +++ mozilla-firefox-bin-3.6.8/run-mozilla.sh    2010-08-18 10:24:42.485849818 +0300
18 @@ -140,7 +140,8 @@
19         ##
20         ## Run the program
21         ##
22 -       "$prog" ${1+"$@"}
23 +       exec "$prog" ${1+"$@"}
24 +       # NORETURN
25         exitcode=$?
26  }
27  ##########################################################################
This page took 0.024109 seconds and 3 git commands to generate.