From 11d3986d6557eb3cfcecbdd0ef6e21b18c7c960b Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 3 Jun 2019 21:15:54 +0900 Subject: 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. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.in') 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) -- cgit v1.2.3