# HG changeset patch # User Elliott Sales de Andrade # Date 1256881221 0 # Node ID 92703683a727620a2f9ef864e733aa870f5ace62 # Parent 12bdd930d99c293ecf799a3952c54a4f5a0063fe My version of sed seems to require no space between the -i and the backup extension. I hope this works on OSX. diff -r 12bdd930d99c -r 92703683a727 autogen.sh --- a/autogen.sh Fri Oct 30 03:52:09 2009 +0000 +++ b/autogen.sh Fri Oct 30 05:40:21 2009 +0000 @@ -151,7 +151,7 @@ run_or_die ${INTLTOOLIZE} ${INTLTOOLIZE_FLAGS:-"-c -f --automake"} # This call to sed is needed to work around an annoying bug in intltool 0.40.6 # See http://developer.pidgin.im/ticket/9520 for details -run_or_die ${SED} -i .bak -e "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" po/Makefile.in.in +run_or_die ${SED} -i.bak -e "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" po/Makefile.in.in run_or_die ${ACLOCAL} ${ACLOCAL_FLAGS:-"-I m4macros"} run_or_die ${AUTOHEADER} ${AUTOHEADER_FLAGS} run_or_die ${AUTOMAKE} ${AUTOMAKE_FLAGS:-"-a -c --gnu"}