lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

100-remove-no-timestamping.patch (388B)


      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"