aboutsummaryrefslogtreecommitdiff
path: root/lib/libregex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libregex')
-rw-r--r--lib/libregex/Makefile1
-rw-r--r--lib/libregex/Makefile.depend15
-rw-r--r--lib/libregex/tests/Makefile1
-rw-r--r--lib/libregex/tests/gnuext.in6
4 files changed, 18 insertions, 5 deletions
diff --git a/lib/libregex/Makefile b/lib/libregex/Makefile
index 555559b9db58..beffa476ca98 100644
--- a/lib/libregex/Makefile
+++ b/lib/libregex/Makefile
@@ -1,4 +1,3 @@
-
.include <src.opts.mk>
PACKAGE= runtime
diff --git a/lib/libregex/Makefile.depend b/lib/libregex/Makefile.depend
index e69de29bb2d1..6ef78fac5cbf 100644
--- a/lib/libregex/Makefile.depend
+++ b/lib/libregex/Makefile.depend
@@ -0,0 +1,15 @@
+# Autogenerated - do NOT edit!
+
+DIRDEPS = \
+ include \
+ include/xlocale \
+ lib/${CSU_DIR} \
+ lib/libc \
+ lib/libcompiler_rt \
+
+
+.include <dirdeps.mk>
+
+.if ${DEP_RELDIR} == ${_DEP_RELDIR}
+# local dependencies - needed for -jN in clean tree
+.endif
diff --git a/lib/libregex/tests/Makefile b/lib/libregex/tests/Makefile
index 9c4a1aac89e8..7c6820f70a45 100644
--- a/lib/libregex/tests/Makefile
+++ b/lib/libregex/tests/Makefile
@@ -1,4 +1,3 @@
-
PACKAGE= tests
TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libc/regex
diff --git a/lib/libregex/tests/gnuext.in b/lib/libregex/tests/gnuext.in
index 8f49854235a9..3ce0f4af1b34 100644
--- a/lib/libregex/tests/gnuext.in
+++ b/lib/libregex/tests/gnuext.in
@@ -10,9 +10,9 @@ a\|b\|c b abc a
(ab)\1 - abab abab
\1(ab) C ESUBREG
(a)(b)(c)(d)(e)(f)(g)(h)(i)\9 - abcdefghii abcdefghii
-# \w, \W, \s, \S (alnum, ^alnum, space, ^space)
-\w+ - -%@a0X- a0X
-\w\+ b -%@a0X- a0X
+# \w, \W, \s, \S (_alnum, ^_alnum, space, ^space)
+\w+ - -%@a_0X- a_0X
+\w\+ b -%@a_0X- a_0X
\s+ - aSNTb SNT
\s\+ b aSNTb SNT
# Word boundaries (\b, \B, \<, \>, \`, \')