From owner-svn-ports-head@freebsd.org Sun Feb 5 16:47:35 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 9A4DFCD21CC; Sun, 5 Feb 2017 16:47:35 +0000 (UTC) (envelope-from vd@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 6A22BF1C; Sun, 5 Feb 2017 16:47:35 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v15GlYv6068217; Sun, 5 Feb 2017 16:47:34 GMT (envelope-from vd@FreeBSD.org) Received: (from vd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v15GlY1k068216; Sun, 5 Feb 2017 16:47:34 GMT (envelope-from vd@FreeBSD.org) Message-Id: <201702051647.v15GlY1k068216@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vd set sender to vd@FreeBSD.org using -f From: Vasil Dimov Date: Sun, 5 Feb 2017 16:47:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433427 - head/ftp/wget X-SVN-Group: ports-head 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.23 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: Sun, 05 Feb 2017 16:47:35 -0000 Author: vd Date: Sun Feb 5 16:47:34 2017 New Revision: 433427 URL: https://svnweb.freebsd.org/changeset/ports/433427 Log: ftp/wget: fix compilation error due to -R being passed to clang gcc accepts -R, but clang needs -Wl,-R and since we are changing this, use the proper -Wl,-rpath. Reported by: Walter Schwarzenfeld, Barbara Guida, Jimmy Olgeni, Ken J. Modified: head/ftp/wget/Makefile Modified: head/ftp/wget/Makefile ============================================================================== --- head/ftp/wget/Makefile Sun Feb 5 16:46:03 2017 (r433426) +++ head/ftp/wget/Makefile Sun Feb 5 16:47:34 2017 (r433427) @@ -78,6 +78,7 @@ post-patch: -e 's,@file{},@file{${PREFIX}},' \ ${WRKSRC}/doc/sample.wgetrc* ${WRKSRC}/doc/wget.texi ${REINPLACE_CMD} -e '/ac_fn_c_check_header_mongrel.*uuid\/uuid.h/ d' \ + -e 's|-R$$found_dir|-Wl,-rpath=$$found_dir|g' \ ${WRKSRC}/configure .include