RobertCNelson / bb.org-overlays

Device Tree Overlays for bb.org boards
Other
38 stars 221 forks source link

Build of config-pin.c fails when $(CC) variable is set #41

Closed klasyc closed 3 years ago

klasyc commented 3 years ago

Hello community,

since commit 6ba194ac52b0e6e23c1daa0181a4ae4659ca0b6f there is a decent error in Makefile at line 120:

$(CC)gcc -o config-pin ./tools/pmunts_muntsos/config-pin.c

The content of $(CC) variable is concatenated with gcc string which creates nonsense together. I believe, the line should be

$(CC) -o config-pin ./tools/pmunts_muntsos/config-pin.c

Thank you