diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-09 19:33:03 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-09 19:35:11 +0200 |
commit | bdb984ba47508ac1d44d173d8d99c95254ef98e9 (patch) | |
tree | c48748fa218ee1ae9b7136c504a6b845775d64cb /lib/am/distdir.am | |
parent | 15b8b62ac20add6de8954053335487a7a492a462 (diff) | |
parent | 1c8bf11bc8db57ef8e33cff04cb6029143b93ac8 (diff) | |
download | automake-bdb984ba47508ac1d44d173d8d99c95254ef98e9.tar.gz |
Merge branch 'maint' (with fix for CVE-2012-3386)
This makes the fix for a locally-exploitable security vulnerability
(CVE-2012-3386) available to the Automake master branch.
* maint:
sync: update files from upstream with "make fetch"
news: improve wording in entry about CVE-2012-3386
maint: post-release minor version bump
release: stable release 1.12.2
distcheck: never make part of $(distdir) world-writable
compat: automake should substitute @mkdir_p@, for backward compatibility
fixup: t/README: it's ./runtest, not ./t/ax/runtest
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'lib/am/distdir.am')
-rw-r--r-- | lib/am/distdir.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/am/distdir.am b/lib/am/distdir.am index bfe0f3145..3063b8ae0 100644 --- a/lib/am/distdir.am +++ b/lib/am/distdir.am @@ -422,7 +422,7 @@ distcheck: dist ## Make the new source tree read-only. Distributions ought to work in ## this case. However, make the top-level directory writable so we ## can make our new subdirs. - chmod -R a-w $(distdir); chmod a+w $(distdir) + chmod -R a-w $(distdir); chmod u+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst ## Undo the write access. |