Hideki Yamane <henr...@iijmio-mail.jp> writes: > Unfortunately, this patch would break behavior of --make-tarball option, > after creating tarball it cleans $TARGET but this patch prevent it even if > $TARGET doesn't exist before command runs. > > Here's revised patch attached.
> +if [ -e "$TARGET"/* ]; then That doesn't work: +--- | $ dash -c '[ -e /bin/* ]' | dash: 1: [: /bin/2to3-2.7: unexpected operator +--- Ansgar