From ac89baf038cdb9d9abfeb439b81562078a573604 Mon Sep 17 00:00:00 2001
From: Andreas Loibl <andreas@andreas-loibl.de>
Date: Mon, 6 Sep 2010 02:35:21 +0200
Subject: enabled timestamping for wget (nvidia)

---
 auto/build | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/auto/build b/auto/build
index 93e2523..b64105c 100755
--- a/auto/build
+++ b/auto/build
@@ -15,11 +15,13 @@ prebuild()
 		VER="$(grep -o ^VER=.* config/chroot_local-includes/usr/local/bin/install-nvidia-debian.sh|sed s/VER=//)"
 		ARCH=; [ "$LH_ARCHITECTURE" = "amd64" ] && ARCH="_64"
 		URL="http://download.nvidia.com/XFree86/Linux-x86$ARCH/$VER/NVIDIA-Linux-x86$ARCH-$VER.run"
-		CACHEURL="cache/$(basename "$URL")"
-		[ "$LH_CACHE" = "false" ] && CACHEURL="config/chroot_local-includes/usr/src/$(basename "$URL")"
-		mkdir -p "$(dirname "$CACHEURL")"
-		[ ! -e "$CACHEURL" ] && wget -O"$CACHEURL" "$URL"
-		cp "$CACHEURL" "config/chroot_local-includes/usr/src/$(basename "$URL")" 2>/dev/null
+		if [ "$LH_CACHE" = "false" ]; then
+			wget -N -c -P config/chroot_local-includes/usr/src "$URL"
+		else
+			mkdir -p cache
+			wget -N -c -P cache "$URL"
+			cp "cache/$(basename "$URL")" "config/chroot_local-includes/usr/src/$(basename "$URL")"
+		fi
 	fi
 }
 
-- 
cgit v1.0