From: Jaroslav Kysela Date: Wed, 23 Oct 2002 18:58:04 +0000 (+0000) Subject: It seems that older tars are confused with --bzip2, use pipe instaed X-Git-Tag: v1.0.3~105 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=c176bd92ec65d40ec9d7ecb2620c773b7c03f1f1;p=alsa-utils.git It seems that older tars are confused with --bzip2, use pipe instaed --- diff --git a/Makefile.am b/Makefile.am index 1632643..4e682bf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,7 +8,7 @@ rpm: dist dist-hook: -chmod -R a+r $(distdir) @if ! test -z "$(AMTAR)"; then \ - $(AMTAR) --create --verbose --bzip2 --file=$(distdir).tar.bz2 $(distdir); \ + $(AMTAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \ else \ - $(TAR) --create --verbose --bzip2 --file=$(distdir).tar.bz2 $(distdir); \ + $(TAR) --create --verbose --bzip2 --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \ fi