aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2015-05-05 23:46:53 +0200
committerTharre <tharre3@gmail.com>2015-05-05 23:46:53 +0200
commit236627bfe4cb85e34f226891972d601e283277f0 (patch)
tree8c6b302be93d9e91d28b99a54d7c2b067117091d
parenta91f378c5ec2a47db9c760853986b928e72b4622 (diff)
downloadredo-236627bfe4cb85e34f226891972d601e283277f0.tar.gz
redo-236627bfe4cb85e34f226891972d601e283277f0.tar.xz
redo-236627bfe4cb85e34f226891972d601e283277f0.zip
Fix path quoting in the clean target
-rw-r--r--default.do2
1 files changed, 1 insertions, 1 deletions
diff --git a/default.do b/default.do
index 5ea9711..af491ee 100644
--- a/default.do
+++ b/default.do
@@ -10,7 +10,7 @@ DESTDIR=${DESTDIR-/usr/local/bin}
if [ "$1" = "all" ]; then
redo-ifchange "$OUTDIR/redo"
elif [ "$1" = "clean" ]; then
- rm -rf "$OUTDIR/*.tmp" "$OUTDIR/*.o" "$OUTDIR/redo" "$OUTDIR/CC"
+ rm -rf "$OUTDIR"/*.tmp "$OUTDIR"/*.o "$OUTDIR"/redo "$OUTDIR"/CC
# autoconf stuff
rm -rf autom4te.cache config.h.in configure config.status config.log config.h
elif [ "$1" = "install" ]; then