forked from motioneye-project/motioneyeos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package/spidermonkey: do not build the JavaScript shell, by default
Add a configuration to enable the JavaScript shell (default off). So far only libmozjs is required (by polkit) and the shell takes around 24MiB. Signed-off-by: Carlos Santos <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
- Loading branch information
1 parent
a8dc83b
commit 04ce57e
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
package/spidermonkey/0011-js-src-Makefile.in-install-shell-only-if-it-s-built.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
From b5e4a9926cf50d12e9c5c05c6d1b161e5b662d62 Mon Sep 17 00:00:00 2001 | ||
From: Carlos Santos <[email protected]> | ||
Date: Sat, 7 Mar 2020 23:42:02 -0300 | ||
Subject: [PATCH] js/src/Makefile.in: install shell only if it's built | ||
|
||
Prevents an installation error if we configure with --disable-js-shell. | ||
|
||
Signed-off-by: Carlos Santos <[email protected]> | ||
--- | ||
js/src/Makefile.in | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/js/src/Makefile.in b/js/src/Makefile.in | ||
index 4ac9f48..9c8fb64 100644 | ||
--- a/js/src/Makefile.in | ||
+++ b/js/src/Makefile.in | ||
@@ -136,7 +136,7 @@ endif | ||
|
||
install:: | ||
$(MAKE) -C build install | ||
- $(MAKE) -C shell install | ||
+ if [ -d shell ]; then $(MAKE) -C shell install; fi | ||
|
||
ifdef HAVE_DTRACE | ||
javascript-trace.h: $(srcdir)/devtools/javascript-trace.d | ||
-- | ||
2.18.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters