diff options
author | Nicola Vitale <nivit@FreeBSD.org> | 2022-11-27 15:04:21 +0100 |
---|---|---|
committer | Nicola Vitale <nivit@FreeBSD.org> | 2022-11-27 15:05:17 +0100 |
commit | b248aa163e80a73ba4955042a30994d948cc9c3d (patch) | |
tree | 0f9ca939b41fd257965f6b1cd3ad6d7d08c189a5 /www/csso/files/patch-lib_csso.js | |
parent | audio/virtual_oss: Update to 1.3.0 (diff) |
www/csso: Fix a runtime error
- Add a temporary patch to fix the following error:
/usr/local/share/csso/lib/csso.js:69
print(fs.readFileSync(__dirname.slice(0, __dirname.lastIndexOf('/')) + '/' + filename).toString());
^
TypeError: print is not a function
at printFile (/usr/local/share/csso/lib/csso.js:69:5)
at Object.<anonymous> (/usr/local/share/csso/lib/csso.js:28:5)
at Module._compile (internal/modules/cjs/loader.js:1236:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1257:10)
at Module.load (internal/modules/cjs/loader.js:1085:32)
at Function.Module._load (internal/modules/cjs/loader.js:950:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12)
at internal/main/run_main_module.js:17:47
This happens because the function util.print() has been removed by recent
versions of node.
- Install the file VERSION (required when using --version switch)
- Reorder variables in Makefile
- Bump PORTREVISION (pkg-plist changed)
PR: 268010
Reported by: Chris Hutchinson <portmaster@bsdforge.com>
Diffstat (limited to 'www/csso/files/patch-lib_csso.js')
-rw-r--r-- | www/csso/files/patch-lib_csso.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www/csso/files/patch-lib_csso.js b/www/csso/files/patch-lib_csso.js new file mode 100644 index 000000000000..351f7f49219f --- /dev/null +++ b/www/csso/files/patch-lib_csso.js @@ -0,0 +1,12 @@ +--- lib/csso.js.orig 2013-10-15 12:47:12 UTC ++++ lib/csso.js +@@ -1,7 +1,8 @@ + var fs = require('fs'), +- print = require('util').print, + csso = require('./cssoapi.js'), + src, x; ++ ++var print = console.log; + + var args = process.argv.slice(2), + opts = args.length ? getOpts(args, [ |