diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-08-04 21:11:30 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-08-04 21:11:30 (EDT) |
commit | bc7912ee552446471dadc49893b1a821f1acb1c4 (patch) | |
tree | 03a560bb80b851e72411fa21064965e2dbad342d /src | |
parent | 957bcef02fadd42ae9a5ea6eb8a0417f4f867b50 (diff) |
ob-buildopk: Really check for BB tar reverse ordering bug
Diffstat (limited to 'src')
-rw-r--r-- | src/ob-buildopk.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ob-buildopk.sh b/src/ob-buildopk.sh index 598419f..b781abb 100644 --- a/src/ob-buildopk.sh +++ b/src/ob-buildopk.sh @@ -57,7 +57,7 @@ build_opk() # order. touch '.opkbuild/a' '.opkbuild/b' if [ x"$(printf '.opkbuild/a\n.opkbuild/b\n' | ${TAR} -c -T - | \ - ${TAR} -t | head -n 1)" = x'b' ]; then + ${TAR} -t | head -n 1)" = x'.opkbuild/b' ]; then sort_r='-r' else sort_r='' |