Skip to content

Commit

Permalink
fix(gcc): fix slashes in ROOT defines
Browse files Browse the repository at this point in the history
  • Loading branch information
wallw-teal committed Aug 16, 2019
1 parent e67136e commit bf5a1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/gcc/defines.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const adder = function(thisPackage, options) {
// modify ROOT defines with the value
var list = [];
for (var key in defines) {
list.push(key + '=\'' + value + path.sep + '\'');
list.push(key + '=\'' + slash(value + path.sep) + '\'');
}

if (list.length) {
Expand Down

0 comments on commit bf5a1b1

Please sign in to comment.