summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfergus.henderson <fergushenderson@users.noreply.github.com>2009-04-18 00:03:07 +0000
committerfergus.henderson <fergushenderson@users.noreply.github.com>2009-04-18 00:03:07 +0000
commita8592a8c5406a7c125479fe269054c41e0525023 (patch)
tree5fa8d3db5d165f10af103cc583507fb84dd5c0b9
parent527605289910a15f5a3e9dff29a2d429820772ae (diff)
downloaddistcc-git-a8592a8c5406a7c125479fe269054c41e0525023.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.
-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,