diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-01 20:39:48 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-01 20:39:48 +0000 |
commit | 84f59ea0e020deb280dc1bced08ee8aa8176292f (patch) | |
tree | 5361f21f064296f9c43cfdd8d787218f6b05bf84 /test/Makefile | |
parent | 2688d30ffbe025d026f426b0e4976f2fb50f1606 (diff) | |
download | uClibc-alpine-84f59ea0e020deb280dc1bced08ee8aa8176292f.tar.bz2 uClibc-alpine-84f59ea0e020deb280dc1bced08ee8aa8176292f.tar.xz |
Move regex tests to their own subdir and dont run them if regex is disabled
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 1402c4ca9..98f88e66c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -24,6 +24,9 @@ endif ifneq ($(UCLIBC_HAS_FULL_RPC),y) DIRS := $(filter-out rpc,$(DIRS)) endif +ifneq ($(UCLIBC_HAS_REGEX),y) + DIRS := $(filter-out regex,$(DIRS)) +endif DIRS := $(filter-out math,$(DIRS)) |