From owner-svn-ports-all@FreeBSD.ORG Sun Mar 15 23:09:14 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 989CB4E1; Sun, 15 Mar 2015 23:09:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 8299362B; Sun, 15 Mar 2015 23:09:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2FN9E5p039927; Sun, 15 Mar 2015 23:09:14 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2FN9En2039925; Sun, 15 Mar 2015 23:09:14 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201503152309.t2FN9En2039925@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 15 Mar 2015 23:09:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381365 - in head/lang/gcc5-aux: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 23:09:14 -0000 Author: marino Date: Sun Mar 15 23:09:13 2015 New Revision: 381365 URL: https://svnweb.freebsd.org/changeset/ports/381365 QAT: https://qat.redports.org/buildarchive/r381365/ Log: lang/gcc5-aux: Fix ada hardlink The code to create a hardlink of gcc5-aux/bin/ada to gcc5-aux/bin/gcc did not work. It appears that the "-" in front of the "if" condition isn't working in this context. However, it's really not needed at all, so just remove it so the hardlink gets created. All Ada ports use gcc5-aux/bin/ada, so it was a critical problem. Modified: head/lang/gcc5-aux/Makefile.version head/lang/gcc5-aux/files/diff-core Modified: head/lang/gcc5-aux/Makefile.version ============================================================================== --- head/lang/gcc5-aux/Makefile.version Sun Mar 15 22:24:38 2015 (r381364) +++ head/lang/gcc5-aux/Makefile.version Sun Mar 15 23:09:13 2015 (r381365) @@ -5,7 +5,7 @@ GCC_POINT= 0.0 GCC_VERSION= ${GCC_BRANCH}.${GCC_POINT} SNAPSHOT= 20150308 BUILD_RELEASE= no -MAIN_PR= 0 +MAIN_PR= 1 UTIL_PR= 0 ARMV7_PR= 0 Modified: head/lang/gcc5-aux/files/diff-core ============================================================================== --- head/lang/gcc5-aux/files/diff-core Sun Mar 15 22:24:38 2015 (r381364) +++ head/lang/gcc5-aux/files/diff-core Sun Mar 15 23:09:13 2015 (r381365) @@ -327,7 +327,7 @@ ( cd $(DESTDIR)$(bindir) && \ $(LN) $(GCC_INSTALL_NAME)$(exeext) $(FULL_DRIVER_NAME) ); \ fi; \ -+ -if [ -f gnat1$(exeext) ] ; then \ ++ if [ -f gnat1$(exeext) ] ; then \ + ( cd $(DESTDIR)$(bindir) && $(LN) $(GCC_INSTALL_NAME)$(exeext) ada$(exeext) ) \ + fi; \ if [ ! -f gcc-cross$(exeext) ] \