Skip to content

Commit

Permalink
libplist: fix bash array usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec authored and MingcongBai committed Feb 8, 2024
1 parent 9e5f65b commit c9ee903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime-common/libplist/autobuild/build
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ mkdir "$SRCDIR"/build{2,3}

cd "$SRCDIR"/build2
PYTHON=/usr/bin/python2 CYTHON=/usr/bin/cython \
../configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER}
../configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER}
make
make install DESTDIR="$PKGDIR"

cd "$SRCDIR"/build3
PYTHON=/usr/bin/python3 CYTHON=/usr/bin/cython3 \
../configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER}
../configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER}
make
make install DESTDIR="$PKGDIR"

Expand Down

0 comments on commit c9ee903

Please sign in to comment.