How to force an error in a gnumake file

后端 未结 3 1222
南旧
南旧 2020-12-13 12:15

I want to detect a condition in my makefile where a tool is the wrong version and force the make to fail with an error message indicating the item is not the right version.<

3条回答
  •  眼角桃花
    2020-12-13 12:42

    The conditional needs some attention too.

    ifeq ($(shell svnversion --version | sed s/[^0-9\.]*://), 1.4) 
        $(error Bad svnversion v1.4, please install v1.6)
    endif 
    

提交回复
热议问题