summaryrefslogtreecommitdiff
path: root/make-dist
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
commite58bbea7b42378982e4e9915c2ddb36fa88da9c8 (patch)
tree428dd328b82c153bc7ad10b1540bf8ec725eff75 /make-dist
parentab60df1b8694728b55642eccce69550a7bf2ab6f (diff)
downloademacs-e58bbea7b42378982e4e9915c2ddb36fa88da9c8.tar.gz
Fix a nasty bug --- the cleanup production was nuking the generated
tar file!
Diffstat (limited to 'make-dist')
-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