diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-12-19 15:15:11 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-12-19 15:15:11 +0200 |
commit | 6ccf8ea81f95963c0b7f945648106576008ee105 (patch) | |
tree | f39f596e6c3e98ff1e9f1de0ad41c977e9dd37c1 /gnu/packages/patches/mathjax-disable-webpack.patch | |
parent | fcaed5b81e893f34d77527fbef389ca628ca882d (diff) | |
parent | 9f916d14765b00309c742fcbff0cfabdd10dcf05 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/patches/mathjax-disable-webpack.patch')
-rw-r--r-- | gnu/packages/patches/mathjax-disable-webpack.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/patches/mathjax-disable-webpack.patch b/gnu/packages/patches/mathjax-disable-webpack.patch new file mode 100644 index 0000000000..7e3d705c15 --- /dev/null +++ b/gnu/packages/patches/mathjax-disable-webpack.patch @@ -0,0 +1,23 @@ +commit 0cfd5b23aed8767f2bcf9583c1feaf4c9a64703a +Author: Lars-Dominik Braun <lars@6xq.net> +Date: Wed Dec 1 14:27:33 2021 +0100 + + guix: Disable webpack + + Guix uses esbuild to “link” the files. We only need the build step. + +diff --git a/components/bin/makeAll b/components/bin/makeAll +index 3e7a8914..5dae9b9b 100755 +--- a/components/bin/makeAll ++++ b/components/bin/makeAll +@@ -61,8 +61,8 @@ function processList(dirs) { + for (const dir of dirs) { + const fulldir = path.resolve(dir); + processDir(fulldir, buildLib); +- processDir(fulldir, webpackLib); +- processDir(fulldir, copyLib); ++ //processDir(fulldir, webpackLib); ++ //processDir(fulldir, copyLib); + } + } + |