New comment by cinerea0 on void-packages repository https://github.com/void-linux/void-packages/pull/24038#issuecomment-668681620 Comment: After using `vsed` to get rid of the `@`s at the start of lines, removing `git`, and removing that `exit`, I'm running into a compilation error I wasn't before: ``` building object obj/src/config.o mkdir -p obj/src cc -Isrc -Isub/ctypes -Isub/argoat/src -Isub/configator/src -Isub/dragonfail/src -Isub/termbox_next/src -fstack-clash-protection -D_FORTIFY_SOURCE=2 -mtune=generic -O2 -pipe -c -o obj/src/config.o src/config.c src/config.c: In function 'lang_load': src/config.c:12:19: error: 'DATADIR' undeclared (first use in this function) 12 | #define INI_LANG DATADIR "/lang/%s.ini" | ^~~~~~~ src/config.c:141:22: note: in expansion of macro 'INI_LANG' 141 | snprintf(file, 256, INI_LANG, config.lang); | ^~~~~~~~ src/config.c:12:19: note: each undeclared identifier is reported only once for each function it appears in 12 | #define INI_LANG DATADIR "/lang/%s.ini" | ^~~~~~~ src/config.c:141:22: note: in expansion of macro 'INI_LANG' 141 | snprintf(file, 256, INI_LANG, config.lang); | ^~~~~~~~ src/config.c:12:27: error: expected ')' before string constant 12 | #define INI_LANG DATADIR "/lang/%s.ini" | ^~~~~~~~~~~~~~ src/config.c:141:22: note: in expansion of macro 'INI_LANG' 141 | snprintf(file, 256, INI_LANG, config.lang); | ^~~~~~~~ src/config.c: In function 'config_defaults': src/config.c:292:30: error: 'DATADIR' undeclared (first use in this function) 292 | config.wayland_cmd = strdup(DATADIR "/wsetup.sh"); | ^~~~~~~ src/config.c:292:37: error: expected ')' before string constant 292 | config.wayland_cmd = strdup(DATADIR "/wsetup.sh"); | ^~~~~~~~~~~~~ | ) src/config.c:296:37: error: expected ')' before string constant 296 | config.x_cmd_setup = strdup(DATADIR "/xsetup.sh"); | ^~~~~~~~~~~~~ | ) make: *** [makefile:52: obj/src/config.o] Error 1 ```