diff options
Diffstat (limited to 'scripts/verify_distfiles.sh')
-rwxr-xr-x | scripts/verify_distfiles.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/verify_distfiles.sh b/scripts/verify_distfiles.sh index 0cf2d689..d7fe77d4 100755 --- a/scripts/verify_distfiles.sh +++ b/scripts/verify_distfiles.sh @@ -9,7 +9,7 @@ check_distfiles() { local myver myname tmp myname=$(qatom $1 |awk '{print $2}') mybasename=${myname/-bin/} - if grep 'MOZ_ESR=""' $1 &>/dev/null || [[ -n $(grep -L MOZ_ESR $1) ]] ; then + if grep -e 'MOZ_ESR=""' -e 'MOZ_ESR="0"' $1 &>/dev/null || [[ -n $(grep -L MOZ_ESR $1) ]] ; then myver=$(qatom $1 |awk '{print $3}') else myver=$(qatom $1 |awk '{print $3 "esr"}') |