On Sat, 2019-06-08 at 03:40 +0000, Hossein Chegini wrote:
> make -r -DUSE_ARCADIA_PYTHON=no -DOS_SDK=local
> -DPYTHON_CONFIG=python3-config

This is not a valid GNU make command line.  When you set variables on
the make command line you don't use -D; -D is not a valid option for
GNU make.

You just write the variable assignment normally with no option:

make -r USE_ARCADIA_PYTHON=no OS_SDK=local PYTHON_CONFIG=python3-config

If this doesn't work you'll probably need to contact the developers for
that project and ask them the correct way to build it.


_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to