Closed klasyc closed 3 years ago
Hello community,
since commit 6ba194ac52b0e6e23c1daa0181a4ae4659ca0b6f there is a decent error in Makefile at line 120:
Makefile
$(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)
gcc
$(CC) -o config-pin ./tools/pmunts_muntsos/config-pin.c
Thank you
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 withgcc
string which creates nonsense together. I believe, the line should be$(CC) -o config-pin ./tools/pmunts_muntsos/config-pin.c
Thank you