diff options
author | Matt Kraai <kraai@debian.org> | 2001-01-29 19:00:48 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-01-29 19:00:48 +0000 |
commit | 201dc0d5a99b8ef765f2b79e6a492a70772a0774 (patch) | |
tree | 67bcf5563982d55a9f6f00ac5406b1727283ad04 | |
parent | ceade5c8561dd2e046e985d1c3c457fded7e0651 (diff) | |
download | busybox-201dc0d5a99b8ef765f2b79e6a492a70772a0774.tar.gz |
Test applets containing numbers in their name. Thanks to Larry Doolittle.
-rwxr-xr-x | tests/multibuild.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/multibuild.pl b/tests/multibuild.pl index 92b1abde9..fb9cdd494 100755 --- a/tests/multibuild.pl +++ b/tests/multibuild.pl @@ -24,7 +24,7 @@ while (<C>) { $trailer .= $_; } else { $in_trailer=1 if /End of Applications List/; - if (/^\/*#define BB_([A-Z_]*)/) { + if (/^\/*#define BB_([A-Z0-9_]*)/) { push @apps, $1; } } |