diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-18 02:35:14 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-18 02:35:14 (EDT) |
commit | 0cd65ea194cb807be40e8c139cc6e177726f1fb5 (patch) | |
tree | ba52dc42eaf6dee89b1bd0d98c242d2edfff2041 /src | |
parent | dffd7a47fbdcac799b4ada5253eab42807d12324 (diff) |
ob-genchanges: Fix undefined variable
Diffstat (limited to 'src')
-rw-r--r-- | src/ob-genchanges.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ob-genchanges.sh b/src/ob-genchanges.sh index 38603d3..f972002 100644 --- a/src/ob-genchanges.sh +++ b/src/ob-genchanges.sh @@ -84,7 +84,7 @@ write_files_bin() [ x"${arch}" != x'all' ] && arch="${OPK_HOST_ARCH}" plat="$(ob_get_binary_parameter "${pkg}" 'Platform')" [ x"${plat}" != x'all' ] && plat="${OPK_HOST_PLAT}" - file="${pkg}_${version}_${arch}_${plat}.opk" + file="${pkg}_${OPK_BINARY_VERSION}_${arch}_${plat}.opk" printf ' %s %s %s\n' \ "$(wc -c "../../${file}" | cut -d ' ' -f 1)" \ 'base' "${file}" >&3 |