quirc icon indicating copy to clipboard operation
quirc copied to clipboard

Make error: missing separator

Open banmoy opened this issue 7 years ago • 2 comments

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

banmoy avatar Apr 25 '18 15:04 banmoy

I also meet this error,but i can not fix. I also need help

lu-jian-dong avatar Apr 25 '18 16:04 lu-jian-dong

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.

dlbeer avatar Apr 25 '18 20:04 dlbeer