I'm trying to build bolt with the following commands:
meson build
ninja -C build
I'm seeing this error:
ninja: Entering directory `build'
.....
cc -Icommon@sta -I. -I.. -I../ -I/usr/include/glib-2.0 ..... -c bolt-enum-types.c
bolt-enum-types.c:5:10: fatal error: bolt-enums.h: No such file or directory
#include "bolt-enums.h"
bolt-enums.h
exists in common/bolt-enums.h
, so changing -Icommon@sta
to -I../common
solves the issue for this particular command. It seems that all build commands are broken by pointing to non-existent directories containing the @ sign in their names.
meson version 0.46.1
ninja version 1.8.2