summaryrefslogtreecommitdiff
path: root/bin/expr
diff options
context:
space:
mode:
authorKiyoshi Aman <kiyoshi.aman@gmail.com>2019-07-06 06:41:07 +0000
committerKiyoshi Aman <kiyoshi.aman@gmail.com>2019-07-06 06:41:07 +0000
commit1c7e02467bcf74ed39d83ea66ead1bb689772345 (patch)
treebcf92c377b807fa2dab3e5d4649cee59ee79365a /bin/expr
parent91e542abd30b662683cfb93dc63d33ff36b398da (diff)
parent5b502a0ebc714bac3e679334c30faaf12e295cfb (diff)
downloaduserland-1c7e02467bcf74ed39d83ea66ead1bb689772345.tar.gz
userland-1c7e02467bcf74ed39d83ea66ead1bb689772345.tar.bz2
userland-1c7e02467bcf74ed39d83ea66ead1bb689772345.tar.xz
userland-1c7e02467bcf74ed39d83ea66ead1bb689772345.zip
Merge branch 'gprbuild-build-system' into 'master'
RFC: gprbuild-based build system See merge request Aerdan/userland!1
Diffstat (limited to 'bin/expr')
-rw-r--r--bin/expr/expr.gpr6
-rw-r--r--bin/expr/expr.y2
2 files changed, 7 insertions, 1 deletions
diff --git a/bin/expr/expr.gpr b/bin/expr/expr.gpr
new file mode 100644
index 0000000..676bdf6
--- /dev/null
+++ b/bin/expr/expr.gpr
@@ -0,0 +1,6 @@
+project expr extends "template/bin.gpr" is
+
+ for Main use (project'Name);
+ for Object_Dir use External ("BUILDROOT") & "/" & project'Name;
+
+end expr;
diff --git a/bin/expr/expr.y b/bin/expr/expr.y
index e9b6212..2760888 100644
--- a/bin/expr/expr.y
+++ b/bin/expr/expr.y
@@ -105,7 +105,7 @@ expr: item { $$ = $1; }
int eval;
/* compile regular expression */
- if ((eval = regcomp(&rp, $3, REG_BASIC)) != 0) {
+ if ((eval = regcomp(&rp, $3, 0)) != 0) {
char errbuf[256];
(void)regerror(eval, &rp, errbuf, sizeof(errbuf));
yyerror("%s", errbuf);