From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 114107 invoked by alias); 22 Nov 2018 16:01:53 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Received: (qmail 113753 invoked by uid 89); 22 Nov 2018 16:01:52 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,KAM_SHORT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=H*r:sk:crossgc X-HELO: mail-qt1-f174.google.com Received: from mail-qt1-f174.google.com (HELO mail-qt1-f174.google.com) (209.85.160.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 22 Nov 2018 16:01:51 +0000 Received: by mail-qt1-f174.google.com with SMTP id i7so7884440qtj.10 for ; Thu, 22 Nov 2018 08:01:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=ArqkxCnqPOTUzw9iMCG5vijPteDdXuFqhux8uB6NhM4=; b=FzHxduDaH6IM3VUi7CXSCuBPlTTNRFeVgrR3vTsAF4Cvt9bAoO6y37YMx6rp3MTNcM wuCEcBYfcdYZLaNlJIl8vBNWj1ZCcT4ASzMwCL7TtbGgrx9JZ7JLY15ZoYUM61uFJKwY xBQ5R0mU/mzCEQXb7D7SgCxYUGW0/k1bDjRlvJOnySrHVpeCQ4AffVaJnOiy7Mq14jHk ol6nm37NNiJNU5X2+6s7zmuKKr7rs/+3gaVrEJzwQsJS4m+jy4We82Jb/AKHyu/mcXSM +AJK6IP17U6Ic3Q0xPrA4Tx/agnPT+2hef2Hj3NPLG8z8dYSDwQRthP42LQqPq9PwZr+ ehhg== MIME-Version: 1.0 From: Thomas De Schampheleire Date: Thu, 22 Nov 2018 16:01:00 -0000 Message-ID: Subject: automake 1.15 requirement To: crossgcc maillist Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2018-11/txt/msg00038.txt.bz2 Hello, I notice the following behavior and would like to check if it is expected. - If I bootstrap, configure and make on a CentOS 7 system with automake 1.13, all looks fine. - If I bootstrap, configure and make on a modern system with automake 1.15, all looks fine. - but, if I bootstrap on a modern system with automake 1.15, move the files to a CentOS 7 system with automake 1.13, then configure and make, the make step fails immediately as follows: $ make CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /repo/tdescham/ctng/crosstool-ng/scripts/missing aclocal-1.15 /repo/tdescham/ctng/crosstool-ng/scripts/missing: line 81: aclocal-1.15: command not found WARNING: 'aclocal-1.15' is missing on your system. You should only need it if you modified 'acinclude.m4' or 'configure.ac' or m4 files included by 'configure.ac'. The 'aclocal' program is part of the GNU Automake package: It also requires GNU Autoconf, GNU m4 and Perl in order to run: make: *** [aclocal.m4] Error 127 To be exact, I use the maintainer/create-release.sh script to get a tarball of crosstool-ng that can then be deployed on different machines. This means that in order to support CentOS 7 for crosstool-ng, releases should be created from a similar system, and not from a more modern system with automake 1.15. Is this behavior expected? Or is there a solution so that even if bootstrap happens with automake 1.15, usage with automake 1.13 will still work? Thanks, Thomas