summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-06-03 21:15:54 +0900
committerTakashi Kokubun <takashikkbn@gmail.com>2019-06-03 21:15:56 +0900
commit11d3986d6557eb3cfcecbdd0ef6e21b18c7c960b (patch)
treee4334cf748f7f7fd7b6ecdecb4c6507de0fa5c9f /Makefile.in
parenta4c5d234045438e09ea4f5feed0ae50958604907 (diff)
common.mk is NOT working with /bin/sh anymore
at least on Ubuntu. The brace expansion does not work on Ubuntu /bin/sh (dash), and so 4c0e21add7c87b70df27fbff81d8f192a467556d effectively broke /bin/sh compatibility of common.mk. I guess he was using macOS whose /bin/sh is bash.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 1cac12aeab..3a97ac360d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,6 +1,6 @@
# -*- mode: makefile-gmake; indent-tabs-mode: t -*-
-SHELL = /bin/sh
+SHELL = /bin/bash
NULLCMD = @NULLCMD@
n=$(NULLCMD)
ECHO1 = $(V:1=$n)