summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2016-03-13 12:18:25 -0600
committerJohn Stebbins <[email protected]>2016-03-13 12:18:25 -0600
commit26946a22799d5bedb13ef826aca9fbe0e64231e6 (patch)
tree963bacc3a1a1227312a73e7fa449f35bc105c9b1 /make
parentc029d661096397407da48a697664bb54650bc579 (diff)
build: fix regex probe
Diffstat (limited to 'make')
-rw-r--r--make/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py
index 319fe7ad7..2b29d7c86 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -1644,7 +1644,7 @@ int main()
int rv;
regex_t exp;
- rv = regcomp(&exp, "^[0-9]+$";", REG_EXTENDED);
+ rv = regcomp(&exp, "^[0-9]+$", REG_EXTENDED);
if (rv != 0) {
return 1;
}