From owner-svn-ports-head@freebsd.org Thu Nov 23 22:34:24 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 C3FB6DF71CB; Thu, 23 Nov 2017 22:34:24 +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 836687D639; Thu, 23 Nov 2017 22:34:24 +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 vANMYNj3048896; Thu, 23 Nov 2017 22:34:23 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vANMYNIq048895; Thu, 23 Nov 2017 22:34:23 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201711232234.vANMYNIq048895@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Thu, 23 Nov 2017 22:34:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454807 - head/sysutils/safecat/files X-SVN-Group: ports-head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/sysutils/safecat/files X-SVN-Commit-Revision: 454807 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: Thu, 23 Nov 2017 22:34:24 -0000 Author: emaste (src committer) Date: Thu Nov 23 22:34:23 2017 New Revision: 454807 URL: https://svnweb.freebsd.org/changeset/ports/454807 Log: sysutils/safecat: fix linking with GNU ld r454582 fixed linking sysutils/safecat with lld but broke linking with GNU ld. PR: 223832 Approved by: antoine Modified: head/sysutils/safecat/files/patch-Makefile Modified: head/sysutils/safecat/files/patch-Makefile ============================================================================== --- head/sysutils/safecat/files/patch-Makefile Thu Nov 23 22:13:33 2017 (r454806) +++ head/sysutils/safecat/files/patch-Makefile Thu Nov 23 22:34:23 2017 (r454807) @@ -12,8 +12,8 @@ As these symbols are provided by str.a just avoid listing the object files as well. ---- Makefile.orig 2017-08-25 13:36:12.671931000 -0400 -+++ Makefile 2017-08-25 13:36:36.138079000 -0400 +--- Makefile.orig 2004-08-16 20:50:09.000000000 -0400 ++++ Makefile 2017-11-23 16:49:00.505811000 -0500 @@ -219,14 +219,14 @@ safecat: \ @@ -24,8 +24,9 @@ +hostname.o sig.o stat_dir.o str_diffn.o substdio_copy.o \ substdi.o substdio.o taia_fmtfrac.o taia_now.o taia_tai.o tempfile.o \ writefile.o - ./load safecat getln.a str.a stralloc.a strerr.a substdio.a \ +- ./load safecat getln.a str.a stralloc.a strerr.a substdio.a \ - alloc.o alloc_re.o byte_copy.o byte_cr.o envread.o error.o \ ++ ./load safecat getln.a stralloc.a strerr.a substdio.a str.a \ + alloc.o alloc_re.o byte_cr.o envread.o error.o \ error_str.o fmt_uint64.o hostname.o sig.o stat_dir.o str_diffn.o \ - str_len.o substdi.o substdio.o substdio_copy.o taia_fmtfrac.o \