From owner-svn-ports-all@FreeBSD.ORG Sun Jul 13 23:20:35 2014 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57D4A75C; Sun, 13 Jul 2014 23:20:35 +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 459552259; Sun, 13 Jul 2014 23:20:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6DNKZ1v065321; Sun, 13 Jul 2014 23:20:35 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6DNKZG6065320; Sun, 13 Jul 2014 23:20:35 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407132320.s6DNKZG6065320@svn.freebsd.org> From: John Marino Date: Sun, 13 Jul 2014 23:20:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361725 - head/devel/psptoolchain-binutils 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 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, 13 Jul 2014 23:20:35 -0000 Author: marino Date: Sun Jul 13 23:20:34 2014 New Revision: 361725 URL: http://svnweb.freebsd.org/changeset/ports/361725 QAT: https://qat.redports.org/buildarchive/r361725/ Log: devel/psptoolchain-binutils: Fix stage support for DragonFly The configure target was hardcoded for FreeBSD. This change fixes the build on DragonFly while being a No-Op for FreeBSD. Modified: head/devel/psptoolchain-binutils/Makefile Modified: head/devel/psptoolchain-binutils/Makefile ============================================================================== --- head/devel/psptoolchain-binutils/Makefile Sun Jul 13 23:13:32 2014 (r361724) +++ head/devel/psptoolchain-binutils/Makefile Sun Jul 13 23:20:34 2014 (r361725) @@ -17,7 +17,7 @@ USES= gmake tar:bzip2 libtool USE_GCC= any HAS_CONFIGURE= yes -CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64/}-unknown-freebsd${OSREL} +CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64/}-unknown-${OPSYS:tl}${OSREL} CONFIGURE_ARGS= --prefix=${PREFIX} \ --target="psp" \ --enable-install-libbfd \