diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-01-19 00:16:43 +0800 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-01-19 00:16:43 +0800 |
commit | c3c55bce6ebadbd5d7c0e7847e1b5bf4510d3be7 (patch) | |
tree | f30930895a477ca594a180e2b940683fa7478f08 /Mk | |
parent | bbda11cd530989a70b0ebecd33076af11d3a28ff (diff) | |
download | freebsd-ports-gnome-c3c55bce6ebadbd5d7c0e7847e1b5bf4510d3be7.tar.gz freebsd-ports-gnome-c3c55bce6ebadbd5d7c0e7847e1b5bf4510d3be7.tar.zst freebsd-ports-gnome-c3c55bce6ebadbd5d7c0e7847e1b5bf4510d3be7.zip |
Be consistent and always enclose shell variables inside braces.
Sponsored by: Absolight
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Scripts/qa.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh index eaeebe868633..93b88e9cb69a 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -31,8 +31,8 @@ shebangonefile() { ;; esac - interp=$(sed -n -e '1s/^#![[:space:]]*\([^[:space:]]*\).*/\1/p;2q' "$f") - case "$interp" in + interp=$(sed -n -e '1s/^#![[:space:]]*\([^[:space:]]*\).*/\1/p;2q' "${f}") + case "${interp}" in "") ;; ${LINUXBASE}/*) ;; ${LOCALBASE}/*) ;; @@ -245,7 +245,7 @@ libperl() { # No results presents a blank line from heredoc. [ -z "${f}" ] && continue files=$((files+1)) - found=`readelf -d $f | awk "BEGIN {libperl=1; rpath=10; runpath=100} + found=`readelf -d ${f} | awk "BEGIN {libperl=1; rpath=10; runpath=100} /NEEDED.*${LIBPERL}/ { libperl = 0 } /RPATH.*perl.*CORE/ { rpath = 0 } /RUNPATH.*perl.*CORE/ { runpath = 0 } @@ -274,7 +274,7 @@ libperl() { $(find ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL} -name '*.so') EOT - if [ $files -gt 0 -a $has_some_libperl_so -eq 0 ]; then + if [ ${files} -gt 0 -a ${has_some_libperl_so} -eq 0 ]; then err "None of the .so in ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL} are linked with ${LIBPERL}, see above for the full list." return 1 else @@ -318,4 +318,4 @@ for check in ${checks}; do ${check} || ret=1 done -exit $ret +exit ${ret} |