Browse Source

adblock: fix restrictive sort selection

Signed-off-by: Dirk Brenken <dev@brenken.org>
lilik-openwrt-22.03
Dirk Brenken 4 years ago
parent
commit
e3db5016a1
No known key found for this signature in database GPG Key ID: 9D71CD547BFAE684
2 changed files with 6 additions and 2 deletions
  1. +1
    -1
      net/adblock/Makefile
  2. +5
    -1
      net/adblock/files/adblock.sh

+ 1
- 1
net/adblock/Makefile View File

@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=adblock
PKG_VERSION:=4.0.8
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_LICENSE:=GPL-3.0-or-later
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>


+ 5
- 1
net/adblock/files/adblock.sh View File

@ -1653,7 +1653,11 @@ fi
adb_sort="$(command -v gnu-sort)"
if [ -z "${adb_sort}" ]
then
f_log "err" "gnu-sort not found"
adb_sort="$(command -v sort)"
if [ -z "$("${adb_sort}" --help 2>/dev/null | grep -Fo -m1 "coreutils")" ]
then
f_log "err" "coreutils sort not found"
fi
fi
# version information


Loading…
Cancel
Save