From owner-svn-ports-head@freebsd.org Fri Dec 29 15:20:55 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5303EA0233; Fri, 29 Dec 2017 15:20:55 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B23E66D7CC; Fri, 29 Dec 2017 15:20:55 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBTFKsbs073644; Fri, 29 Dec 2017 15:20:54 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBTFKsxj073643; Fri, 29 Dec 2017 15:20:54 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201712291520.vBTFKsxj073643@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Fri, 29 Dec 2017 15:20:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457508 - head/sysutils/e2fsprogs X-SVN-Group: ports-head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/sysutils/e2fsprogs X-SVN-Commit-Revision: 457508 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Dec 2017 15:20:56 -0000 Author: emaste (src committer) Date: Fri Dec 29 15:20:54 2017 New Revision: 457508 URL: https://svnweb.freebsd.org/changeset/ports/457508 Log: sysutils/e2fsprogs: set LLD_UNSAFE to avoid linking with lld One test fails when this port is linked with lld: d_loaddump: debugfs load/dump test: failed --- d_loaddump/expect 2017-10-16 05:45:45.000000000 +0000 +++ d_loaddump.log 2017-12-28 13:00:42.099973000 +0000 @@ -10,7 +10,7 @@ Pass 3: Checking directory connectivity Pass 4: Checking reference counts Pass 5: Checking group summary information -test_filesys: 12/64 files (0.0% non-contiguous), 158/512 blocks +test_filesys: 12/64 files (0.0% non-contiguous), 156/512 blocks Exit status is 0 debugfs -R ''dump test_data d_loaddump.ver.tmp'' test.img Exit status is 0 This looks like a very unusual failure and careful investigation into lld's behaviour is warranted, but for now set LLD_UNSAFE to fall back to ld.bfd so the port continues to build for users using lld as /usr/bin/ld. PR: 214864 Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation Modified: head/sysutils/e2fsprogs/Makefile Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Fri Dec 29 14:25:16 2017 (r457507) +++ head/sysutils/e2fsprogs/Makefile Fri Dec 29 15:20:54 2017 (r457508) @@ -27,6 +27,7 @@ CPE_VENDOR= e2fsprogs_project USE_CSTD= gnu99 USE_LDCONFIG= yes GNU_CONFIGURE= yes +LLD_UNSAFE= yes CONFIGURE_ARGS?=--disable-fsck \ --disable-e2initrd-helper \ --disable-libuuid \