diff options
| author | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-22 19:23:41 +0000 |
|---|---|---|
| committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-22 19:23:41 +0000 |
| commit | 0d5761c4370bfe9249dceaa1caca305ab2706d4c (patch) | |
| tree | 472dd6c8a8f1e21f941079eda334a21b049003e3 | |
| parent | eb708e87ade8035dfa454097f63a6f1bac5ef1f3 (diff) | |
| download | emacs-0d5761c4370bfe9249dceaa1caca305ab2706d4c.tar.gz | |
Fix a nasty bug --- the cleanup production was nuking the generated
tar file!
| -rwxr-xr-x | make-dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make-dist b/make-dist index 81cd817b376..c09d7306b04 100755 --- a/make-dist +++ b/make-dist @@ -286,7 +286,7 @@ fi if [ "${clean_up}" = yes ]; then echo "Cleaning up the staging directory." - rm -rf ${tempparent} + rm -rf ${tempdir} fi ### make-dist ends here |
