summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfergus.henderson <fergus.henderson@01de4be4-8c4a-0410-9132-4925637da917>2009-04-18 00:03:07 +0000
committerfergus.henderson <fergus.henderson@01de4be4-8c4a-0410-9132-4925637da917>2009-04-18 00:03:07 +0000
commit814b65a3f0c2d6f2bc9856e666f469b71930613e (patch)
tree5fa8d3db5d165f10af103cc583507fb84dd5c0b9
parent73356b34ee441cf4797786b8e6d75c3f0dcbeb90 (diff)
downloaddistcc-814b65a3f0c2d6f2bc9856e666f469b71930613e.tar.gz
Apply patch from Assar <assar@permabit.com>:
If any of the files in the source directory are not writable, running "make dist" will prompt you if you want to remove those files in the temporary distribution directory (distcc-3.1). The following tiny patch fixes that. git-svn-id: http://distcc.googlecode.com/svn/trunk@674 01de4be4-8c4a-0410-9132-4925637da917
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index cc730df..4635e3e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -593,7 +593,7 @@ dist:
$(BZIP2_BIN) --help 2>/dev/null && \
$(BZIP2_BIN) -vfc "$(tarball)" > "$(tarball_bz2)"
rm -f "$(tarball)"
- rm -r "$(distdir)"
+ rm -fr "$(distdir)"
cp "$(srcdir)/NEWS" "$(distnews)"
# We create two new directories: one for the build and one to install,