4e04578831
At least KiCAD tries to find wx-config-gtk3 in the current directory, without looking for it in PATH, so the build fails. Actually give it a full path, like we do for the cross build case.
5 lines
130 B
Bash
5 lines
130 B
Bash
if [ "$CROSS_BUILD" ]; then
|
|
export WX_CONFIG=${XBPS_WRAPPERDIR}/wx-config-gtk3
|
|
else
|
|
export WX_CONFIG=/usr/bin/wx-config-gtk3
|
|
fi
|