mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-27 03:26:07 +02:00
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
|