Skip to content

Commit b551f34

Browse files
committed
Fixes non-arm linux deb build process
1 parent 344dcb3 commit b551f34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/build.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -948,13 +948,13 @@
948948

949949
<!-- Set properties for DEBIAN/control file -->
950950
<condition property="linux.deb" value="linux/processing-${version}-linux-armv6hf.deb">
951-
<equals arg1="linux-arm32" arg2="linux-arm32" />
951+
<equals arg1="${linux-arm32}" arg2="linux-arm32" />
952952
</condition>
953953
<property name="linux.deb" value="linux/processing-${version}-linux${sun.arch.data.model}.deb" />
954954

955955
<!-- Raspbian seems to borrow armhf for armv6hf, so this works -->
956956
<condition property="deb.arch" value="armhf">
957-
<equals arg1="linux-arm32" arg2="linux-arm32" />
957+
<equals arg1="${linux-arm32}" arg2="linux-arm32" />
958958
</condition>
959959
<condition property="deb.arch" value="i386">
960960
<equals arg1="${sun.arch.data.model}" arg2="32" />

0 commit comments

Comments
 (0)