diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2010-09-06 11:24:26 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2010-09-06 11:24:26 +0200 |
commit | 9df1d9bcedcffe85f57e8847891dc0af6173494a (patch) | |
tree | 66095b9f23642aa85a0a550da15a74497bd6cb15 /auto/build | |
parent | ab36ab8af22cb496f10dea816a8b79b04c4ed567 (diff) | |
download | kanotix-9df1d9bcedcffe85f57e8847891dc0af6173494a.zip kanotix-9df1d9bcedcffe85f57e8847891dc0af6173494a.tar.gz |
wget: removed "-c" option
Diffstat (limited to 'auto/build')
-rwxr-xr-x | auto/build | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,10 +18,10 @@ prebuild() ARCH=; [ "$LH_ARCHITECTURE" = "amd64" ] && ARCH="_64" URL="http://download.nvidia.com/XFree86/Linux-x86$ARCH/$VER/NVIDIA-Linux-x86$ARCH-$VER.run" if [ "$LH_CACHE" = "false" ]; then - wget -N -c -P config/chroot_local-includes/usr/src "$URL" + wget -N -P config/chroot_local-includes/usr/src "$URL" else mkdir -p cache - wget -N -c -P cache "$URL" + wget -N -P cache "$URL" cp "cache/$(basename "$URL")" "config/chroot_local-includes/usr/src/$(basename "$URL")" fi fi |