quirc
quirc copied to clipboard
Make error: missing separator
With Centos 3.10.0-693.17.1.el7.x86_64 and GNU Make 3.82, make error
Makefile:18: *** missing separator. Stop.
but with Mac os and GNU Make 3.81, there is no such error.
Line 18 is SDL_CFLAGS != pkg-config --cflags sdl
Can anyone help me? Thanks
I also meet this error,but i can not fix. I also need help
Try changing the line:
SDL_CFLAGS != pkg-config --cflags sdl
to:
SDL_CFLAGS = $(shell pkg-config --cflags sdl)
You will need to do the same for the other != line in the Makefile.