$OpenBSD: patch-build_js,v 1.2 2013/08/28 20:09:42 abieber Exp $
--- build.js.orig	Thu Jun 13 05:12:16 2013
+++ build.js	Wed Aug 28 15:53:04 2013
@@ -26,7 +26,12 @@ if (!{ia32: true, x64: true, arm: true}.hasOwnProperty
 }
 
 // Test for pre-built library
-var modPath = platform+ '-'+ arch+ '-v8-'+ v8;
+var modPath;
+if ( platform === 'openbsd' ) {
+  modPath = ""
+} else {
+  modPath = platform+ '-'+ arch+ '-v8-'+ v8;
+}
 if (!force) {
 	try {
 		fs.statSync(path.join(__dirname, 'bin', modPath, 'fibers.node'));
