diff options
author | Jakub Jelinek <jakub@redhat.com> | 2012-09-20 16:41:17 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2012-09-20 16:41:17 +0200 |
commit | c0758df9210fdfce00d0d12bb66deca78e277659 (patch) | |
tree | cac3f26ad8f16168724612ed10b74ee3f85cfccb /libatomic/configure.ac | |
parent | 01e721f30b5f848446d2606342de4be367cb1f48 (diff) | |
download | gcc-c0758df9210fdfce00d0d12bb66deca78e277659.zip gcc-c0758df9210fdfce00d0d12bb66deca78e277659.tar.gz gcc-c0758df9210fdfce00d0d12bb66deca78e277659.tar.bz2 |
re PR other/43620 ([4.3 Release Blocker] Uploading to gnu.org will fail due to automake security issue)
PR other/43620
libatomic/
* configure.ac (AM_INIT_AUTOMAKE): Add no-dist.
* configure: Regenerate.
* Makefile.in: Regenerate.
libitm/
* configure.ac (AM_INIT_AUTOMAKE): Add no-dist.
* configure: Regenerate.
* Makefile.in: Regenerate.
From-SVN: r191565
Diffstat (limited to 'libatomic/configure.ac')
-rw-r--r-- | libatomic/configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libatomic/configure.ac b/libatomic/configure.ac index 390e779..164ca8d 100644 --- a/libatomic/configure.ac +++ b/libatomic/configure.ac @@ -76,12 +76,13 @@ target_alias=${target_alias-$host_alias} # no-define: PACKAGE and VERSION will not be #define'd in config.h (a bunch # of other PACKAGE_* variables will, however, and there's nothing # we can do about that; they come from AC_INIT). +# no-dist: we don't want 'dist' and related rules. # foreign: we don't follow the normal rules for GNU packages (no COPYING # file in the top srcdir, etc, etc), so stop complaining. # -Wall: turns on all automake warnings... # -Wno-portability: ...except this one, since GNU make is required. # -Wno-override: ... and this one, since we do want this in testsuite. -AM_INIT_AUTOMAKE([1.9.0 foreign -Wall -Wno-portability -Wno-override]) +AM_INIT_AUTOMAKE([1.9.0 foreign no-dist -Wall -Wno-portability -Wno-override]) AM_ENABLE_MULTILIB(, ..) # Calculate toolexeclibdir |