summaryrefslogtreecommitdiff
path: root/user/thunderbird
diff options
context:
space:
mode:
authorMax Rees <maxcrees@me.com>2019-07-21 21:16:29 -0400
committerMax Rees <maxcrees@me.com>2019-07-21 21:16:29 -0400
commit57e345c7685983e629aac18a4e5b068392d29f6d (patch)
tree3382b950b7b2b20262401226e0495ef4a0d86514 /user/thunderbird
parent28292506b3918b763ea272399044fcf72534aec2 (diff)
downloadpackages-57e345c7685983e629aac18a4e5b068392d29f6d.tar.gz
packages-57e345c7685983e629aac18a4e5b068392d29f6d.tar.bz2
packages-57e345c7685983e629aac18a4e5b068392d29f6d.tar.xz
packages-57e345c7685983e629aac18a4e5b068392d29f6d.zip
user/*: bashism removal part 2 (o-z)
Diffstat (limited to 'user/thunderbird')
-rw-r--r--user/thunderbird/APKBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/thunderbird/APKBUILD b/user/thunderbird/APKBUILD
index 9acdee471..5b23efe27 100644
--- a/user/thunderbird/APKBUILD
+++ b/user/thunderbird/APKBUILD
@@ -74,7 +74,7 @@ prepare() {
echo "ac_add_options --host=\"$CHOST\"" >> "$builddir"/mozconfig
echo "ac_add_options --target=\"$CTARGET\"" >> "$builddir"/mozconfig
# too much memory
- if [ -z "$JOBS" -o $JOBS -gt 16 ]; then
+ if [ -z "$JOBS" ] || [ $JOBS -gt 16 ]; then
echo "mk_add_options MOZ_MAKE_FLAGS=\"-j16\"" >> "$builddir"/mozconfig
fi
}