diff mbox series

configure: Force-remove temp dir

Message ID 20201113161146.24088-1-amphetamachine@gmail.com
State New
Headers show
Series configure: Force-remove temp dir | expand

Commit Message

Dan Church Nov. 13, 2020, 4:11 p.m. UTC
Sometimes the compiler will leave a write-protected .o file in the temp
directory, and GNU rm will ask before deleting it unless -f is
specified.

Signed-off-by: Dan Church <amphetamachine@gmail.com>
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/configure b/configure
index 4cef321d9d..663b91a334 100755
--- a/configure
+++ b/configure
@@ -7080,4 +7080,4 @@  done
 echo ' "$@"' >>config.status
 chmod +x config.status
 
-rm -r "$TMPDIR1"
+rm -rf "$TMPDIR1"