Make error: missing separator

后端 未结 12 2084
说谎
说谎 2020-11-22 08:07

I am getting the following error running make:

Makefile:168: *** missing separator.  Stop.

What is causing this?

12条回答
  •  既然无缘
    2020-11-22 08:54

    In my case error caused next. I've tried to execute commands globally i.e outside of any target.

    UPD. To run command globally one must be properly formed. For example command

    ln -sf ../../user/curl/$SRC_NAME ./$SRC_NAME
    

    would become:

    $(shell ln -sf ../../user/curl/$(SRC_NAME) ./$(SRC_NAME))
    

提交回复
热议问题