Remove --no-timestamping wget option from update-pciids script
[openwrt/svn-archive/archive.git] / utils / pciutils / patches / 100-remove-no-timestamping.patch
1 diff -Nur pciutils-3.1.2/update-pciids.sh pciutils-3.1.2-patched/update-pciids.sh
2 --- pciutils-3.1.2/update-pciids.sh 2008-11-11 01:11:51.000000000 +0200
3 +++ pciutils-3.1.2-patched/update-pciids.sh 2009-04-27 01:34:24.000000000 +0300
4 @@ -33,7 +33,7 @@
5 DL="curl -o $DEST.new $SRC"
6 ${quiet} && DL="$DL -s -S"
7 elif which wget >/dev/null 2>&1 ; then
8 - DL="wget --no-timestamping -O $DEST.new $SRC"
9 + DL="wget -O $DEST.new $SRC"
10 ${quiet} && DL="$DL -q"
11 elif which lynx >/dev/null 2>&1 ; then
12 DL="eval lynx -source $SRC >$DEST.new"