On Wed, 13 Feb 2008 06:51:26 +0100
Philippe Bergheaud <[EMAIL PROTECTED]> wrote:

> 'dim-0-mv45 import' succeeds but prints 'rm: missing operand' messages on 
> GNU/Linux.

Thanks for the report.  This is due to the following statement in dax:

ddr=/tmp/dax.$$ trap 'rm $ddr' EXIT

which doesn't set ddr in the callback, under bash. It works ok with
other shells.

I replaced it with:

ddr=/tmp/dax.$$; trap "rm $ddr" EXIT

Marc
--
Archive: http://www.mail-archive.com/dim@ml.free.fr/
To unsubscribe: mailto:[EMAIL PROTECTED]

Reply via email to