BIND 10 master, updated. 8d1942a3b7516e8161b7f54888da2a4a4d27484e [master] use install-sh (with -m) instead of cp to make sure writable test DB file has write permission. hopefully it should fix the distcheck failure on the freebsd8 buildbot.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Sep 8 09:02:39 UTC 2011
The branch, master has been updated
via 8d1942a3b7516e8161b7f54888da2a4a4d27484e (commit)
from 856ff83ad2b97c136de1103a421547bdcb332e74 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 8d1942a3b7516e8161b7f54888da2a4a4d27484e
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Sep 8 02:01:44 2011 -0700
[master] use install-sh (with -m) instead of cp to make sure writable test
DB file has write permission. hopefully it should fix the distcheck failure
on the freebsd8 buildbot.
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/tests/testdata/Makefile.am | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/tests/testdata/Makefile.am b/src/lib/datasrc/tests/testdata/Makefile.am
index 84d49fc..64ae955 100644
--- a/src/lib/datasrc/tests/testdata/Makefile.am
+++ b/src/lib/datasrc/tests/testdata/Makefile.am
@@ -1,5 +1,6 @@
CLEANFILES = *.copied
BUILT_SOURCES = rwtest.sqlite3.copied
+# We use install-sh with the -m option to make sure it's writable
rwtest.sqlite3.copied: $(srcdir)/rwtest.sqlite3
- cp $(srcdir)/rwtest.sqlite3 $@
+ $(top_srcdir)/install-sh -m 644 $(srcdir)/rwtest.sqlite3 $@
More information about the bind10-changes
mailing list