Commit 1c46ec77 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Environment variable MACHINE is used in glibc cross-build - we should use something else

parent 70604528
...@@ -3,12 +3,12 @@ ...@@ -3,12 +3,12 @@
<property environment="env"/> <property environment="env"/>
<property file="${builddir}/machine"/> <property file="${builddir}/machine"/>
<property name="MACHINE" value="${env.MACHINE}"/> <property name="MACH" value="${env.MACH}"/>
<import file="machines/${MACHINE}/definition.xml" optional="true"/> <import file="machines/${MACH}/definition.xml" optional="true"/>
<fail unless="BOARD" message="Correct machine type must be specified"/> <fail unless="BOARD" message="Correct machine type must be specified"/>
<property name="VERSION" value="${ID}-${MACHINE}"/> <property name="VERSION" value="${ID}-${MACH}"/>
<exec executable="bash" outputproperty="LAST_COMMIT"> <exec executable="bash" outputproperty="LAST_COMMIT">
<arg value="-c"/> <arg value="-c"/>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment