Skip to content

Commit

Permalink
ext(gumbo): Makefile variable override is not necessary
Browse files Browse the repository at this point in the history
since 5c6f7c1 when we started passing CFLAGS, et al through
environment variables instead of through the make command line.

Although this wasn't doing any harm on gnu-based systems, `override`
is a gnu-ism and we need to support builds on bsd systems.

Related to #2298
  • Loading branch information
flavorjones committed Aug 3, 2021
1 parent 66dace2 commit 2e7ab22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gumbo-parser/src/Makefile
Expand Up @@ -2,7 +2,7 @@
# to enable a mini_portile2 recipe to build the gumbo parser
.PHONY: clean

override CFLAGS += -std=c99 -Wall
CFLAGS += -std=c99 -Wall

# allow the ENV var to override this
RANLIB ?= ranlib
Expand Down

0 comments on commit 2e7ab22

Please sign in to comment.