On Wed, 08 Mar 2017 13:54:04 +0200 jim_p <pitsior...@gmail.com> wrote:
Package: thunderbird
Version: 1:45.7.1-2
Followup-For: Bug #857029
To the ones that removed the comment parts and made it work again. Can you
please write a patch for it or paste the corrected file in pastebin?
I removed the comment parts but the message shows up again.
And please merge it with bug #857032.
I placed a patch in bug #856490 (where this issue was introduced), but
here it is again.
It worked for me, so...
Good luck! :-)
--- /usr/bin/thunderbird-broken 2017-03-08 09:06:55.057957903 +0000
+++ /usr/bin/thunderbird 2017-03-08 09:07:31.442581553 +0000
@@ -193,9 +193,9 @@
# is a state we can't solve on our own !!! The user needs to interact and
# has probably an old or otherwise used Thunderbird installation. Which one
# is the correct one to use?
-elif { [ -d "${ID_PROFILE_FOLDER}" ] || [ -L "${ID_PROFILE_FOLDER}" ]; } && \
# .icedove exists as folder or symlink
- { [ -d "${TB_PROFILE_FOLDER}" ] || [ -L "${TB_PROFILE_FOLDER}" ]; } && \
# .thunderbird exists as folder or symlink
- [ "$(readlink -e "${TB_PROFILE_FOLDER}")" != "${ID_PROFILE_FOLDER}" ];
then # compare if canonical name of both folders equal
+elif { [ -d "${ID_PROFILE_FOLDER}" ] || [ -L "${ID_PROFILE_FOLDER}" ]; } && \
+ { [ -d "${TB_PROFILE_FOLDER}" ] || [ -L "${TB_PROFILE_FOLDER}" ]; } && \
+ [ "$(readlink -e "${TB_PROFILE_FOLDER}")" != "${ID_PROFILE_FOLDER}" ];
then
output_debug "There is already a folder or symlink '${TB_PROFILE_FOLDER}',
will do nothing."
output_debug "Please investigate by yourself! Some more information below."