Skip to content
Snippets Groups Projects
Commit 5efad5b5 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

By default, build SpiderMonkey (libmozjs) in silent (no recipe) output mode

If debugging build issues, build with VERBOSE=1 to get the very verbose
SpiderMonkey build output again.
parent b36749f5
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,11 @@ $(JSLIB_BUILD): $(3RDP_ROOT)/dist/libmozjs.tgz $(3RDP_ROOT)/build/js_src_jsnativ
$(QUIET)patch -b -p0 -d $(JS_SRC) < js-disable-warnings.patch
-$(QUIET)cd $(JS_SRC)/js-1.8.5/js/src && autoconf-2.13
$(QUIET)cd $(JS_SRC)/js-1.8.5/js/src && env $(JS_CONFIGURE_ENV) ./configure $(JS_CONFIGURE_ARGS)
ifdef VERBOSE
$(QUIET)$(MAKE) -C $(JS_SRC)/js-1.8.5/js/src
else
$(QUIET)$(MAKE) -s -C $(JS_SRC)/js-1.8.5/js/src
endif
$(QUIET)$(MAKE) -C $(JS_SRC)/js-1.8.5/js/src install
$(CRYPT_SRC): | $(3RDPSRCDIR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment