File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ js-dependencies: $(JS_PKG_DIR)/node_modules
58
58
59
59
BLUEBIRD_MODULE_DIR := $(SUPPORT_BUILD_DIR ) /bluebird_$(bluebird_VERSION ) /node_modules/packed-bluebird/node_modules/bluebird
60
60
61
- $(BLUEBIRD_MODULE_DIR ) : $(SUPPORT_BUILD_DIR ) /bluebird_$(bluebird_VERSION ) /install.witness
61
+ $(BLUEBIRD_MODULE_DIR ) : $(SUPPORT_BUILD_DIR ) /bluebird_$(bluebird_VERSION ) /$( INSTALL_WITNESS )
62
62
touch $@
63
63
64
64
$(JS_PKG_DIR ) /node_modules : $(BLUEBIRD_MODULE_DIR ) $(JS_PKG_DIR ) | $(NPM_BIN_DEP )
@@ -69,8 +69,13 @@ $(JS_PKG_DIR)/node_modules: $(BLUEBIRD_MODULE_DIR) $(JS_PKG_DIR) | $(NPM_BIN_DEP
69
69
70
70
$(JS_BUILD_DIR ) /rethinkdb.js : $(JS_PKG_DIR ) $(JS_PKG_DIR ) /node_modules | $(BROWSERIFY_BIN_DEP )
71
71
$P BROWSERIFY
72
+ ifeq (Windows, $(OS ) )
73
+ cd $(JS_PKG_DIR) && \
74
+ $(abspath $(BROWSERIFY)) --require ./rethinkdb:rethinkdb --ignore tls --outfile "$(shell cygpath -w "$(abspath $@)")"
75
+ else
72
76
cd $(JS_PKG_DIR) && \
73
77
$(abspath $(BROWSERIFY)) --require ./rethinkdb:rethinkdb --ignore tls --outfile $(abspath $@)
78
+ endif
74
79
75
80
.PHONY : js-driver
76
81
js-driver : $(JS_BUILD_DIR ) /rethinkdb.js
You can’t perform that action at this time.
0 commit comments