diff options
-rw-r--r-- | doc/SConscript | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/doc/SConscript b/doc/SConscript index c436fb4..229cf25 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -36,9 +36,9 @@ Import('env', 'whereis') # # # -doc_tar = os.path.join('#build', - 'dist', - 'scons-doc-%s.tar' % env.Dictionary('VERSION')) +doc_tar_gz = os.path.join('#build', + 'dist', + 'scons-doc-%s.tar.gz' % env.Dictionary('VERSION')) # # We'll only try to build text files (for some documents) @@ -276,8 +276,5 @@ if man2html: # for easy distribution to the web site. # if tar_deps: - doc_tar_gz = doc_tar + ".gz" - env.Command(doc_tar, tar_deps, - "tar cf${TAR_HFLAG} $TARGET -C build/doc %s" % tar_list) - env.Command(doc_tar_gz, doc_tar, - "gzip $SOURCES") + env.Command(doc_tar_gz, tar_deps, + "tar cf${TAR_HFLAG} - -C build/doc %s | gzip > $TARGET" % tar_list) |