diff options
author | Jim Blandy <jimb@redhat.com> | 1993-03-20 18:12:07 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-03-20 18:12:07 +0000 |
commit | 17d68aa05a40a45758fefa2c47d655fcdb5c9bf6 (patch) | |
tree | 9430c7246c7b53856b3ad25b7c8b057db4a8c5b8 | |
parent | bcc426b4520f99b42fba9a49809d793fcf76040e (diff) | |
download | emacs-17d68aa05a40a45758fefa2c47d655fcdb5c9bf6.tar.gz emacs-17d68aa05a40a45758fefa2c47d655fcdb5c9bf6.tar.bz2 emacs-17d68aa05a40a45758fefa2c47d655fcdb5c9bf6.zip |
* make-dist: Fix typo.
-rwxr-xr-x | make-dist | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/make-dist b/make-dist index 6c3c020b01b..412234b26e9 100755 --- a/make-dist +++ b/make-dist @@ -279,8 +279,7 @@ if [ "${make_tar}" = yes ]; then fi echo "Creating tar file." (cd ${tempparent} - tar cvf - ${emacsname}) \ - | ${default_gzip} > ${emacsname}.tar.Z + tar cvf - ${emacsname} | ${default_gzip} > ${emacsname}.tar.Z ) fi |