Hello,

I've mentioned it before in the context of MAPI, but let me raise
awareness of it again: dolt uses bash syntax which is not supported by
bash versions still in use today. I mailed the author, but didn't get a
reply. Please consider replacing the += in all acinclude.m4 files
(gtkhtml/evolution/evolution-data-server), otherwise users on older
systems will not be able to compile - I'm one of them. Patch attached,
can file a bug report if that's necessary.

-- 
Bye, Patrick Ohly
--  
[EMAIL PROTECTED]
http://www.estamos.de/
Index: evolution-data-server/acinclude.m4
===================================================================
--- evolution-data-server/acinclude.m4	(revision 9502)
+++ evolution-data-server/acinclude.m4	(working copy)
@@ -445,7 +445,7 @@
     case "$arg" in
         --mode=compile) modeok=true ;;
         --tag=CC|--tag=CXX) tagok=true ;;
-        *) args+=("$arg")
+        *) [EMAIL PROTECTED]"$arg" ;;
     esac
 done
 if $modeok && $tagok ; then
_______________________________________________
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers

Reply via email to