From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14192 invoked by alias); 28 Aug 2012 17:05:18 -0000 Received: (qmail 14175 invoked by uid 22791); 28 Aug 2012 17:05:17 -0000 X-SWARE-Spam-Status: No, hits=-3.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KHOP_THREADED,TW_BD X-Spam-Check-By: sourceware.org Received: from localhost (HELO sourceware.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 28 Aug 2012 17:05:04 +0000 From: "bruce.dubbs at gmail dot com" To: glibc-bugs@sources.redhat.com Subject: [Bug build/14476] test-installation.pl fails on x86_64 Date: Tue, 28 Aug 2012 17:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: glibc X-Bugzilla-Component: build X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bruce.dubbs at gmail dot com X-Bugzilla-Status: WAITING X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact glibc-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: glibc-bugs-owner@sourceware.org X-SW-Source: 2012-08/txt/msg00196.txt.bz2 http://sourceware.org/bugzilla/show_bug.cgi?id=14476 --- Comment #3 from Bruce Dubbs 2012-08-28 17:05:03 UTC --- That doesn't affect the perl script. Starting at line 97: while () { next if (/^all-sonames/); chop; if (/^lib/) { ($name, $version)= /^lib(.*)\.so-version=\.(.*)$/; # Filter out some libraries we don't want to link: # - nss_ldap since it's not yet available # - libdb1 since it conflicts with libdb # - libnss1_* from glibc-compat add-on # - libthread_db since it contains unresolved references # - it's just a test NSS module # - We don't provide the libgcc so we don't test it if ($name ne "nss_ldap" && $name ne "db1" && !($name =~/^nss1_/) && $name ne "thread_db" && $name ne "nss_test1" && $name ne "libgcc_s") { $link_libs .= " -l$name"; $versions{$name} = $version; } } else { if (/^ld\.so/) { ($ld_so_name, $ld_so_version)= /=(.*)\.so\.(.*)$/; } } } The problem is in the else clause. It does not evaluate the expression to the right of the = sign. Also, the value in the expression extracted from soversions.mk, $(abi-64-ld-soname), is not defined in the script. LD_SO_VERSION is never used in the script. A hack would be: if ( /ld\.so-version/ ) { ld.so-version = $LD_SO_VERSION; } -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.