We almost have it. But this is not correct:
Code:
cat build
WANT_AUTOMAKE=1.15
make yaud-enigma2
either make it:
Code:
cat build
export WANT_AUTOMAKE=1.15
make yaud-enigma2
or oneliner
Code:
cat build
WANT_AUTOMAKE=1.15 make yaud-enigma2
I think easiest solution would be to have in make.sh
Code:
echo -n "WANT_AUTOMAKE=1.15 " > $CURDIR/build