* Derek Price wrote on Thu, Sep 25, 2008 at 05:10:31PM CEST: > --- gnulib-tool revision 1.307 > +++ gnulib-tool working copy
> +func_push () > +{ > + var=$1 > + shift > + for e; do The more portable way really is for e do not for e; do sorry for not stating that clearly the first time. <http://www.gnu.org/software/autoconf/manual/html_node/Limitations-of-Builtins.html#index-g_t_0040command_007bfor_007d-1423> > + func_append $var " $e" > + done Cheers, Ralf