aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFrank Fischer <frank.fischer@mathematik.tu-chemnitz.de>2012-06-05 20:38:26 +0200
committerFrank Fischer <frank.fischer@mathematik.tu-chemnitz.de>2012-06-05 20:38:26 +0200
commit8794b8c6c69a3611a4d6aab95dc208fdbd4824d3 (patch)
treee4311e290fcea876afd86a7db9bcefedad640f60 /Makefile
parentfb7e6726cf9e4183c2a5407bad5e8aae72969928 (diff)
Use /bin/sh as shell in Makefile
/bin/sh is more standard and sufficient on non-Linux systems, e.g. NetBSD.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7bbe77a..b539525 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-SHELL = /bin/bash
+SHELL = /bin/sh
EMACS = emacs
FILES = $(filter-out evil-tests.el,$(filter-out evil-pkg.el,$(wildcard evil*.el)))
VERSION := $(shell sed -n '3s/.*"\(.*\)".*/\1/p' evil-pkg.el)