From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id DAE0E384BC14 for ; Tue, 8 Sep 2020 23:08:26 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org DAE0E384BC14 Received: by sf.home (Postfix, from userid 1000) id 09E495A22061; Wed, 9 Sep 2020 00:08:21 +0100 (BST) From: Sergei Trofimovich To: systemtap@sourceware.org Cc: Sergei Trofimovich Subject: [PATCH] configure.ac: use AM_PROG_AR to autodetect prefixed 'ar' Date: Wed, 9 Sep 2020 00:08:18 +0100 Message-Id: <20200908230818.3326772-1-slyfox@gentoo.org> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-9.5 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: systemtap@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Systemtap mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Sep 2020 23:08:33 -0000 Before the change ./configure --host=x86_64-pc-linux-gnu was using 'ar' tool to generate archives. After the change it uses x86_64-pc-linux-gnu-ar tool. It's useful for selecting one of multiple available prefixed toolchains. WARNING: Did not regenerate autotools files. Signed-off-by: Sergei Trofimovich --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 6249110db..9589fa6f2 100644 --- a/configure.ac +++ b/configure.ac @@ -22,6 +22,7 @@ AC_PROG_LN_S AC_PROG_CC AC_PROG_CXX AC_PROG_CPP +AM_PROG_AR AM_PROG_CC_C_O AC_PROG_RANLIB AC_OBJEXT -- 2.28.0