summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMCApollo <34170230+MCApollo@users.noreply.github.com>2019-11-09 15:32:53 -0800
committerNico Williams <nico@cryptonector.com>2019-12-30 17:48:45 -0600
commitd235e97f5eb085689c40dfae49dc5a6e72c7bc54 (patch)
tree37d38e92faed5cdffb219c79353108073da87812
parent4c2e63a658ba1dfa483223a009e6e2eba3ac6f34 (diff)
compile-ios.sh: Update grammar
-rwxr-xr-xcompile-ios.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/compile-ios.sh b/compile-ios.sh
index 4b47f6dd..8bbf3b54 100755
--- a/compile-ios.sh
+++ b/compile-ios.sh
@@ -1,4 +1,4 @@
--#!/usr/bin/env bash
+#!/usr/bin/env bash
# Mac C. compile-ios.sh for JQ.
# Defaults
@@ -19,7 +19,7 @@ ${0##*/}: usage
Arguments:
--extra-cflags <arg>: Pass defines or includes to clang.
- --extra-ldflags <arg>: Pass libs or included to ld64.
+ --extra-ldflags <arg>: Pass libs or includes to ld64.
--with-oniguruma <arg>: Change default version of onigurma from ${oniguruma}.
EOF
@@ -52,7 +52,7 @@ t_exit() {
cat << EOF
A error as occured.
- oniguruma location: ${builddir}/onig
+ oniguruma location: ${builddir}/onig/onig-${oniguruma}
jq location: ${cwd}
Provide config.log and console logs when posting a issue.
@@ -90,7 +90,7 @@ cd "${builddir}/"
[[ ! -f ./configure ]] && autoreconf -ivf
CC=${CC} LDFLAGS=${LDFLAGS} \
./configure --host=${HOST} --build=$(./config/config.guess) --enable-docs=no --enable-shared=no --enable-static=yes --prefix=/ --with-oniguruma=${cwd}/ios/onig/${arch} $(test -z ${BISON+x} && echo '--disable-maintainer-mode')
- make -j${MAKEJOBS} install DESTDIR="${cwd}/ios/jq/${arch}" # No jobs on purpose.
+ make -j${MAKEJOBS} install DESTDIR="${cwd}/ios/jq/${arch}"
make clean
done