Return-Path: X-Original-To: apmail-apr-bugs-archive@www.apache.org Delivered-To: apmail-apr-bugs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B0162177CF for ; Wed, 11 Mar 2015 15:36:44 +0000 (UTC) Received: (qmail 48315 invoked by uid 500); 11 Mar 2015 15:36:44 -0000 Delivered-To: apmail-apr-bugs-archive@apr.apache.org Received: (qmail 48283 invoked by uid 500); 11 Mar 2015 15:36:44 -0000 Mailing-List: contact bugs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@apr.apache.org Delivered-To: mailing list bugs@apr.apache.org Received: (qmail 48273 invoked by uid 99); 11 Mar 2015 15:36:44 -0000 Received: from mail-relay.apache.org (HELO mail-relay.apache.org) (140.211.11.15) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Mar 2015 15:36:44 +0000 Received: from asf-bz1-us-mid.priv.apache.org (nat1-us-mid.apache.org [23.253.172.122]) by mail-relay.apache.org (ASF Mail Server at mail-relay.apache.org) with ESMTPS id 5C62F1A02C0 for ; Wed, 11 Mar 2015 15:36:44 +0000 (UTC) Received: by asf-bz1-us-mid.priv.apache.org (ASF Mail Server at asf-bz1-us-mid.priv.apache.org, from userid 33) id 69E0861214; Wed, 11 Mar 2015 15:36:43 +0000 (UTC) From: bugzilla@apache.org To: bugs@apr.apache.org Subject: [Bug 57690] New: build from svn fails due to check for libtool. ref: buildconf, buildcheck, libtool Date: Wed, 11 Mar 2015 15:36:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: APR X-Bugzilla-Component: APR X-Bugzilla-Version: HEAD X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: lance.arsenault@gmail.com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: bugs@apr.apache.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bz.apache.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 https://bz.apache.org/bugzilla/show_bug.cgi?id=57690 Bug ID: 57690 Summary: build from svn fails due to check for libtool. ref: buildconf, buildcheck, libtool Product: APR Version: HEAD Hardware: PC OS: Linux Status: NEW Severity: normal Priority: P2 Component: APR Assignee: bugs@apr.apache.org Reporter: lance.arsenault@gmail.com Created attachment 32558 --> https://bz.apache.org/bugzilla/attachment.cgi?id=32558&action=edit patch to build/buildcheck.sh Working with: URL: http://svn.apache.org/repos/asf/apr/apr/trunk Revision: 1665724 Last Changed Date: 2015-03-08 06:10:01 -0400 (Sun, 08 Mar 2015) When building APR from svn source running the "autotools bootstrap script": ./buildconf fails when running build/buildcheck.sh. build/buildcheck.sh looks for a "libtool" program and may not find it. At this stage of the build libtool should not be required to exist. libtool is built at "configure time" not at "bootstrap time" when ./buildconf is run. So a fresh svn check-out of the APR code will fail to build when running ./buildconf. Grepping shows that build/buildcheck.sh is used only in buildconf, so I guess that build/buildcheck.sh is only run by buildconf, but it's possible that the grep will not find a composed "buildcheck.sh" string that is deep in the bowels of the code. The fix is easy, just remove the libtool check. buildconf is checking for libtoolize already, so that should be enough "checking", and this removed code should not introduce any adverse effects. Attached is a patch for consideration. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org For additional commands, e-mail: bugs-help@apr.apache.org