Skip to content

Commit 0388cc9

Browse files
authored
Merge pull request #179 from maxdrib/fix-makefile-2
Fixing broken build on linux due to inline comment
2 parents a4c1c46 + 20e95ed commit 0388cc9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

common.mk

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ include $(REPO_ROOT)/versions.mk
1717
# Ensure Make is run with bash shell as some syntax below is bash-specific
1818
SHELL:=bash
1919
.ONESHELL:
20-
.SHELLFLAGS := -euc # No spaces allowed in linux SHELLFLAGS, so omitting -o pipefail
20+
# No spaces allowed in linux SHELLFLAGS, so omitting -o pipefail
21+
.SHELLFLAGS := -euc
2122
.DELETE_ON_ERROR:
2223
MAKEFLAGS += --no-builtin-rules
2324

0 commit comments

Comments
 (0)