GNOME Bugzilla – Bug 619702
configure script not compatible with dash as /bin/sh
Last modified: 2010-05-26 10:29:49 UTC
Empathy's configure script has some incompatibilities with non-bash shells. test foo -a bar isn't portable: use test foo && test bar. test foo -o bar isn't portable: use test foo || test bar. test foo == bar isn't portable: use test foo = bar. with-session-bus.sh also has a portability bug (use of &>) which was already fixed in telepathy-glib. Patch for master: http://git.collabora.co.uk/?p=user/smcv/empathy.git;a=shortlog;h=refs/heads/trivia Trivial backport to 2.30: http://git.collabora.co.uk/?p=user/smcv/empathy.git;a=shortlog;h=refs/heads/2.30-trivia
Created attachment 162000 [details] [review] patch 1/2
Created attachment 162001 [details] [review] patch 2/2
Thanks, merged to both branches. This problem has been fixed in our software repository. The fix will go into the next software release. Thank you for your bug report.