summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1993-03-22 19:23:41 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1993-03-22 19:23:41 +0000
commit0d5761c4370bfe9249dceaa1caca305ab2706d4c (patch)
tree472dd6c8a8f1e21f941079eda334a21b049003e3
parenteb708e87ade8035dfa454097f63a6f1bac5ef1f3 (diff)
downloademacs-0d5761c4370bfe9249dceaa1caca305ab2706d4c.tar.gz
Fix a nasty bug --- the cleanup production was nuking the generated
tar file!
-rwxr-xr-xmake-dist2
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