Add check for correct wxGTK version report by wx-config. If incorrect cmake fails. Compare https://bugzilla.redhat.com/show_bug.cgi?id=1077718
This commit is contained in:
parent
6aa4de9bfd
commit
25061ed626
|
@ -151,6 +151,15 @@ install_prerequisites()
|
||||||
sudo yum install $p || exit 1
|
sudo yum install $p || exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
|
echo "Checking wxGTK version. Maybe you have to symlink /usr/bin/wx-config-3.0 to /usr/bin/wx-config"
|
||||||
|
V=`wx-config --version | cut -f 1 -d '.'` || echo "Error running wx-config."
|
||||||
|
if [ $V -lt 3 ]
|
||||||
|
then
|
||||||
|
echo "Error: wx-config is reporting version prior to 3"
|
||||||
|
exit
|
||||||
|
else
|
||||||
|
echo "All ok"
|
||||||
|
fi
|
||||||
# Only install the scripting prerequisites if required.
|
# Only install the scripting prerequisites if required.
|
||||||
if [ "$(expr match "$OPTS" '.*\(-DKICAD_SCRIPTING=ON\)')" == "-DKICAD_SCRIPTING=ON" ]; then
|
if [ "$(expr match "$OPTS" '.*\(-DKICAD_SCRIPTING=ON\)')" == "-DKICAD_SCRIPTING=ON" ]; then
|
||||||
#echo "KICAD_SCRIPTING=ON"
|
#echo "KICAD_SCRIPTING=ON"
|
||||||
|
|
Loading…
Reference in New Issue