From 2862f589db08b92c7b1f78fa961aff7354027c0b Mon Sep 17 00:00:00 2001 From: awgy Date: Sat, 12 Feb 2011 03:35:41 +0100 Subject: Remove sed from post-build code, due to portability issues between GNU and BSD versions. Follow up to ba43d37394b6018779d9a668c548e11579cd424a which apparently didn't fix the problem completly on Mac OS X. --- build/post-compile.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 build/post-compile.js (limited to 'build/post-compile.js') diff --git a/build/post-compile.js b/build/post-compile.js new file mode 100644 index 000000000..4bcafe814 --- /dev/null +++ b/build/post-compile.js @@ -0,0 +1,7 @@ +#!/usr/bin/env node + +var print = require("sys").print, + src = require("fs").readFileSync(process.argv[2], "utf8"); + +// Previously done in sed but reimplemented here due to portability issues +print(src.replace(/^(\s*\*\/)(.+)/m, "$1\n$2;")); -- cgit v1.2.3