Skip to content

Commit

Permalink
Merge pull request #179 from maxdrib/fix-makefile-2
Browse files Browse the repository at this point in the history
Fixing broken build on linux due to inline comment
  • Loading branch information
rejoshed authored Oct 14, 2022
2 parents a4c1c46 + 20e95ed commit 0388cc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ include $(REPO_ROOT)/versions.mk
# Ensure Make is run with bash shell as some syntax below is bash-specific
SHELL:=bash
.ONESHELL:
.SHELLFLAGS := -euc # No spaces allowed in linux SHELLFLAGS, so omitting -o pipefail
# No spaces allowed in linux SHELLFLAGS, so omitting -o pipefail
.SHELLFLAGS := -euc
.DELETE_ON_ERROR:
MAKEFLAGS += --no-builtin-rules

Expand Down

0 comments on commit 0388cc9

Please sign in to comment.