aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Erik Martin-Dorel <erik@martin-dorel.org>2016-09-23 00:41:42 +0200
committerGravatar Erik Martin-Dorel <erik@martin-dorel.org>2016-09-23 00:41:42 +0200
commit80967674f6f60a190e1108b9588ed336debad0ce (patch)
tree276495089fc20e9c4b5308494684f0ecdeba1553 /Makefile
parentb219fc3a64062c0a76daba7512acb1439b4965d1 (diff)
Disable parallel build, to workaround the issue raised in PR #112.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6c92ef53..32daa246 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,9 @@
##
###########################################################################
+# Disable parallel build for now, to workaround the issue raised in PR #112
+.NOTPARALLEL:
+
# Set this according to your version of Emacs.
# NB: this is also used to set default install path names below.
EMACS=$(shell if [ -z "`which emacs`" ]; then echo "Emacs executable not found"; exit 1; else echo emacs; fi)