From ab381eff50aabec3b6ad2b1a021856dc50d04335978cf5fe4f89cc77fc283225 Mon Sep 17 00:00:00 2001 From: Wolfgang Rosenauer Date: Mon, 17 Nov 2014 17:55:33 +0000 Subject: [PATCH 1/3] Accepting request 261959 from home:Ledest:bashisms fix bashism in mozilla.sh script OBS-URL: https://build.opensuse.org/request/show/261959 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=267 --- MozillaThunderbird.changes | 5 +++++ mozilla.sh.in | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/MozillaThunderbird.changes b/MozillaThunderbird.changes index e11c813..7ccd6ae 100644 --- a/MozillaThunderbird.changes +++ b/MozillaThunderbird.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Nov 16 21:22:00 UTC 2014 - Led + +- fix bashism in mozilla.sh script + ------------------------------------------------------------------- Tue Nov 4 08:16:43 UTC 2014 - guillaume@opensuse.org diff --git a/mozilla.sh.in b/mozilla.sh.in index 8b5f087..4a35c0d 100644 --- a/mozilla.sh.in +++ b/mozilla.sh.in @@ -131,7 +131,8 @@ done if [ $moz_debug -eq 1 ]; then tmpfile=`mktemp /tmp/mozargs.XXXXXX` || { echo "Cannot create temporary file" >&2; exit 1; } trap " [ -f \"$tmpfile\" ] && /bin/rm -f -- \"$tmpfile\"" 0 1 2 3 13 15 - echo -e "set args ${1+"$@"}\nrun" > $tmpfile + echo "set args ${1+"$@"}" > $tmpfile + echo "run" > $tmpfile echo "$moz_debugger $MOZ_PROGRAM -x $tmpfile" exec $moz_debugger "$MOZ_PROGRAM" -x $tmpfile else From 662abdc59c0a47348247f2f5bcfac45179c241ecdb0dcf6a95ceef54ead9cc3c Mon Sep 17 00:00:00 2001 From: Wolfgang Rosenauer Date: Wed, 19 Nov 2014 22:02:44 +0000 Subject: [PATCH 2/3] Accepting request 262389 from home:Ledest:bashisms fix mozilla.sh script after previous commit OBS-URL: https://build.opensuse.org/request/show/262389 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=268 --- MozillaThunderbird.changes | 5 +++++ mozilla.sh.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/MozillaThunderbird.changes b/MozillaThunderbird.changes index 7ccd6ae..db4f847 100644 --- a/MozillaThunderbird.changes +++ b/MozillaThunderbird.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 19 22:00:00 UTC 2014 - Led + +- fix mozilla.sh script after previous commit + ------------------------------------------------------------------- Sun Nov 16 21:22:00 UTC 2014 - Led diff --git a/mozilla.sh.in b/mozilla.sh.in index 4a35c0d..df51608 100644 --- a/mozilla.sh.in +++ b/mozilla.sh.in @@ -132,7 +132,7 @@ if [ $moz_debug -eq 1 ]; then tmpfile=`mktemp /tmp/mozargs.XXXXXX` || { echo "Cannot create temporary file" >&2; exit 1; } trap " [ -f \"$tmpfile\" ] && /bin/rm -f -- \"$tmpfile\"" 0 1 2 3 13 15 echo "set args ${1+"$@"}" > $tmpfile - echo "run" > $tmpfile + echo "run" >> $tmpfile echo "$moz_debugger $MOZ_PROGRAM -x $tmpfile" exec $moz_debugger "$MOZ_PROGRAM" -x $tmpfile else From 31a07683a7bfb635df699f93613512471cc7d123b5299d474aa911544b8928d5 Mon Sep 17 00:00:00 2001 From: Wolfgang Rosenauer Date: Wed, 19 Nov 2014 22:03:23 +0000 Subject: [PATCH 3/3] OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=269 --- MozillaThunderbird.changes | 5 ----- 1 file changed, 5 deletions(-) diff --git a/MozillaThunderbird.changes b/MozillaThunderbird.changes index db4f847..7ccd6ae 100644 --- a/MozillaThunderbird.changes +++ b/MozillaThunderbird.changes @@ -1,8 +1,3 @@ -------------------------------------------------------------------- -Wed Nov 19 22:00:00 UTC 2014 - Led - -- fix mozilla.sh script after previous commit - ------------------------------------------------------------------- Sun Nov 16 21:22:00 UTC 2014 - Led