Skip to content

Commit 45ca918

Browse files
authored
__init_features|generators__.jam regexp review (#494)
1 parent 5dcb3c8 commit 45ca918

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tools/features/__init_features__.jam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import os path modules ;
1212
.this-module's-file = [ modules.binding $(__name__) ] ;
1313
.this-module's-dir = [ path.parent [ path.make $(.this-module's-file) ] ] ;
1414
.to-load-jamfiles = [ path.glob $(.this-module's-dir) : *-$(key).jam ] ;
15-
.to-load-modules = [ MATCH ^(.*)\.jam$ : $(.to-load-jamfiles) ] ;
15+
.to-load-modules = [ MATCH ^(.*)\\.jam$ : $(.to-load-jamfiles) ] ;
1616

1717
# A loop over all matched modules in this directory
1818
for local m in $(.to-load-modules)

src/tools/generators/__init_generators__.jam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import os path modules ;
1212
.this-module's-file = [ modules.binding $(__name__) ] ;
1313
.this-module's-dir = [ path.parent [ path.make $(.this-module's-file) ] ] ;
1414
.to-load-jamfiles = [ path.glob $(.this-module's-dir) : *-$(key).jam ] ;
15-
.to-load-modules = [ MATCH ^(.*)\.jam$ : $(.to-load-jamfiles) ] ;
15+
.to-load-modules = [ MATCH ^(.*)\\.jam$ : $(.to-load-jamfiles) ] ;
1616

1717
# A loop over all matched modules in this directory
1818
for local m in $(.to-load-modules)

0 commit comments

Comments
 (0)