diff options
author | John Marino <marino@FreeBSD.org> | 2014-04-19 17:01:37 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-04-19 17:01:37 +0000 |
commit | 7e86d0296e63193cd89470f2edfbcc15f54b63e8 (patch) | |
tree | 606d37b9a2286cd9eff320cbdae2fcd9b1d44266 | |
parent | pkg-messageify pkg-message rather than using pkg-install (diff) |
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.
Notes
Notes:
svn path=/head/; revision=351602
-rw-r--r-- | lang/gcc-aux/Makefile | 2 | ||||
-rw-r--r-- | lang/gcc-aux/Makefile.common | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lang/gcc-aux/Makefile b/lang/gcc-aux/Makefile index 1d2a0c03e60b..b954404234c5 100644 --- a/lang/gcc-aux/Makefile +++ b/lang/gcc-aux/Makefile @@ -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' \ diff --git a/lang/gcc-aux/Makefile.common b/lang/gcc-aux/Makefile.common index 4f8d3b911798..4d1642e93134 100644 --- a/lang/gcc-aux/Makefile.common +++ b/lang/gcc-aux/Makefile.common @@ -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 \ |