Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

makefile - Make error for ifeq: syntax error near unexpected token

I'm writing a Makefile that does string matching at one place, the code is like:

if test ...; 
    then 
    shell scripts... 
fi

ifeq ($(DIST_TYPE),nightly)
    shell scripts ...
endif

Here the first if is shell script, the second ifeq is GNU Make's conditional. However the following error generates:

ifeq (nightly,nightly)

/bin/sh: -c: line 0: syntax error near unexpected token `nightly,nightly'

/bin/sh: -c: line 0: `ifeq (nightly,nightly)'

What's happening here? It seems that Make is trying to call the shell.

Thank you.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I played around the code and found that the conditional statements should be written without indentation, and this solved my problem.

If there is no indentation, Make will treat it as a directive for itself; otherwise, it's regarded as a shell script.

Example code

Wrong:

target:
    ifeq (foo, bar)
        ...
    endif

Correct:

target:
ifeq (foo, bar)
    ...
endif

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...