From c176bd92ec65d40ec9d7ecb2620c773b7c03f1f1 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Wed, 23 Oct 2002 18:58:04 +0000 Subject: It seems that older tars are confused with --bzip2, use pipe instaed --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile.am') 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 -- cgit v1.2.1