From owner-svn-ports-all@FreeBSD.ORG Sat Apr 19 17:01:38 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A3DC448; Sat, 19 Apr 2014 17:01:38 +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 47A3C1681; Sat, 19 Apr 2014 17:01:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3JH1clb046791; Sat, 19 Apr 2014 17:01:38 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3JH1b3W046789; Sat, 19 Apr 2014 17:01:37 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201404191701.s3JH1b3W046789@svn.freebsd.org> From: John Marino Date: Sat, 19 Apr 2014 17:01:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351602 - head/lang/gcc-aux 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.17 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: Sat, 19 Apr 2014 17:01:38 -0000 Author: marino Date: Sat Apr 19 17:01:37 2014 New Revision: 351602 URL: http://svnweb.freebsd.org/changeset/ports/351602 QAT: https://qat.redports.org/buildarchive/r351602/ Log: lang/gcc-aux: Fix a testsuite application typo, add test to list Both of these issues affect dragonfly only. The *-*-dragonfly* target for dejagnu needs to be added to a few hundred tests but a typo prevented that from happening. No revbump as testing does not affect the final package, nor is it a default option. Modified: head/lang/gcc-aux/Makefile head/lang/gcc-aux/Makefile.common Modified: head/lang/gcc-aux/Makefile ============================================================================== --- head/lang/gcc-aux/Makefile Sat Apr 19 16:58:13 2014 (r351601) +++ head/lang/gcc-aux/Makefile Sat Apr 19 17:01:37 2014 (r351602) @@ -182,7 +182,7 @@ post-extract: @${PATCH} -d ${WRKSRC} -s -E < ${FILESDIR}/diff-${suffix} .endfor @(cd ${WRKSRC}/libstdc++-v3/testsuite && ${REINPLACE_CMD} \ - -e 's|\*-\*-freebsd\*|*-*-dragonfly *-*-freebsd*|' ${CXXTS4DF}) + -e 's|\*-\*-freebsd\*|*-*-dragonfly* *-*-freebsd*|' ${CXXTS4DF}) @(cd ${WRKSRC}/libstdc++-v3/testsuite/22_locale && ${REINPLACE_CMD} \ -e 's|ISO-8859|ISO8859|g' \ -e 's|ja_JP.eucjp|ja_JP.eucJP|g' \ Modified: head/lang/gcc-aux/Makefile.common ============================================================================== --- head/lang/gcc-aux/Makefile.common Sat Apr 19 16:58:13 2014 (r351601) +++ head/lang/gcc-aux/Makefile.common Sat Apr 19 17:01:37 2014 (r351602) @@ -43,6 +43,7 @@ CXXTS4DF= \ 30_threads/condition_variable/cons/1.cc \ 30_threads/condition_variable/members/1.cc \ 30_threads/condition_variable/members/2.cc \ + 30_threads/condition_variable/members/53841.cc \ 30_threads/condition_variable/native_handle/typesizes.cc \ 30_threads/condition_variable_any/50862.cc \ 30_threads/condition_variable_any/cons/1.cc \