package: add a few extra packages
[openwrt-working-2016/.git] / package / utils / pciutils / patches / 100-remove-no-timestamping.patch
1 --- a/update-pciids.sh
2 +++ b/update-pciids.sh
3 @@ -33,7 +33,7 @@ if which curl >/dev/null 2>&1 ; then
4         DL="curl -o $DEST.new $SRC"
5      ${quiet} && DL="$DL -s -S"
6  elif which wget >/dev/null 2>&1 ; then
7 -       DL="wget --no-timestamping -O $DEST.new $SRC"
8 +       DL="wget -O $DEST.new $SRC"
9         ${quiet} && DL="$DL -q"
10  elif which lynx >/dev/null 2>&1 ; then
11         DL="eval lynx -source $SRC >$DEST.new"