Remove --no-timestamping wget option from update-pciids script

This bug is introduced after upgrading pciutils package and prevents successful
installation of the package. This patch fixes update-pciids script not to use
--no-timestamping wget switch, which is not supported by busybox.

Signed-off-by: Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@15679 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2009-05-07 13:45:02 +00:00
parent a1edd711af
commit c04fc60640

View File

@ -0,0 +1,12 @@
diff -Nur pciutils-3.1.2/update-pciids.sh pciutils-3.1.2-patched/update-pciids.sh
--- pciutils-3.1.2/update-pciids.sh 2008-11-11 01:11:51.000000000 +0200
+++ pciutils-3.1.2-patched/update-pciids.sh 2009-04-27 01:34:24.000000000 +0300
@@ -33,7 +33,7 @@
DL="curl -o $DEST.new $SRC"
${quiet} && DL="$DL -s -S"
elif which wget >/dev/null 2>&1 ; then
- DL="wget --no-timestamping -O $DEST.new $SRC"
+ DL="wget -O $DEST.new $SRC"
${quiet} && DL="$DL -q"
elif which lynx >/dev/null 2>&1 ; then
DL="eval lynx -source $SRC >$DEST.new"