From: Mathieu Desnoyers Date: Tue, 10 May 2016 22:22:00 +0000 (-0400) Subject: Fix: examples make distcheck failure X-Git-Tag: v0.9.3~22 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=df3250de4bf86bfdd0232164f868363c54871804;hp=df3250de4bf86bfdd0232164f868363c54871804;p=userspace-rcu.git Fix: examples make distcheck failure "make distcheck" marks each source file on the srcdir in the extracted dist tarball read-only. The examples copy from the srcdir into the builddir before running the "make" examples, but this keeps the read-only flag on the builddir directories, which fails the build because the resulting objects cannot be created. Fix this by ensuring the copied target directory for each example is user-writeable. Signed-off-by: Mathieu Desnoyers ---