summaryrefslogtreecommitdiff
path: root/user/mozjs/baseconfig.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2018-07-11 01:13:55 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2018-07-11 01:13:55 -0500
commitec3d896cd187a2ce4e81ecf749f623a262e6aad1 (patch)
treee4b80f00e640f1a9fbe1fe304a43b56673e0e18b /user/mozjs/baseconfig.patch
parent49bf4eada542ac3e302f1da9864e1f6e02de7c15 (diff)
downloadpackages-ec3d896cd187a2ce4e81ecf749f623a262e6aad1.tar.gz
packages-ec3d896cd187a2ce4e81ecf749f623a262e6aad1.tar.bz2
packages-ec3d896cd187a2ce4e81ecf749f623a262e6aad1.tar.xz
packages-ec3d896cd187a2ce4e81ecf749f623a262e6aad1.zip
user/mozjs: new package, THE MOST EPIC PYTHON PATCH EVER MADE
Diffstat (limited to 'user/mozjs/baseconfig.patch')
-rw-r--r--user/mozjs/baseconfig.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/user/mozjs/baseconfig.patch b/user/mozjs/baseconfig.patch
new file mode 100644
index 000000000..ee52728fa
--- /dev/null
+++ b/user/mozjs/baseconfig.patch
@@ -0,0 +1,22 @@
+Fix various paths to include MOZ_APP_VERSION
+
+This has been committed upstream but was not included in
+the 52.4.0 sources that spidermonkey was rolled from.
+
+--- a/config/baseconfig.mk 2017-10-03 14:00:45.000000000 -0400
++++ b/config/baseconfig.mk 2017-10-03 16:36:10.857663794 -0400
+@@ -2,10 +2,10 @@
+ # directly in python/mozbuild/mozbuild/base.py for gmake validation.
+ # We thus use INCLUDED_AUTOCONF_MK to enable/disable some parts depending
+ # whether a normal build is happening or whether the check is running.
+-includedir := $(includedir)/$(MOZ_APP_NAME)
+-idldir = $(includedir)/idl/$(MOZ_APP_NAME)
+-installdir = $(libdir)/$(MOZ_APP_NAME)
+-sdkdir = $(libdir)/$(MOZ_APP_NAME)
++includedir := $(includedir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
++idldir = $(includedir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
++installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
++sdkdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
+ ifeq (.,$(DEPTH))
+ DIST = dist
+ else