Skip to content

Commit 17f6bfc

Browse files
committed
turn off failing code
GNU Make 4.1 (Used in Ubuntu systems in Github CI) doesn't export variables to $(shell) calls. The feature was added in GNU Make 4.4
1 parent 6e6d80e commit 17f6bfc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/target-specific.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ CC:=gcc
33
CFLAGS:=-Wall
44
export CC FOO CFLAGS
55

6-
$(info $(shell echo $$CC))
7-
$(info $(shell printenv CC))
6+
#$(info $(shell echo $$CC))
7+
#$(info $(shell printenv CC))
88

99
BAZ:=baz
1010

0 commit comments

Comments
 (0)