Skip to content

Commit bf5a1b1

Browse files
committed
fix(gcc): fix slashes in ROOT defines
1 parent e67136e commit bf5a1b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/gcc/defines.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const adder = function(thisPackage, options) {
114114
// modify ROOT defines with the value
115115
var list = [];
116116
for (var key in defines) {
117-
list.push(key + '=\'' + value + path.sep + '\'');
117+
list.push(key + '=\'' + slash(value + path.sep) + '\'');
118118
}
119119

120120
if (list.length) {

0 commit comments

Comments
 (0)