X-Git-Url: https://hackdaworld.org/gitweb/?p=hdw-linux%2Fhdw-linux.git;a=blobdiff_plain;f=scripts%2FDownload;h=9c6b0dc99786cb516dbfeec2e508af0903a943d4;hp=2d0126cb93cdd356a645c48d1de7973f7688140a;hb=4dfe4bc90c6670e31d52449b3294467e879eda28;hpb=6ae193981fcc05dcc495b4bde92cb8fd290ee4dd diff --git a/scripts/Download b/scripts/Download index 2d0126c..9c6b0dc 100755 --- a/scripts/Download +++ b/scripts/Download @@ -190,7 +190,7 @@ for dir in `ls -A --ignore="CVS" ./download`; do rm -rf $file $module dlerror=0 if [ "${is_cvs}" = "cvs" ] ; then - cvs -z 9 -d:pserver:${user}@${loc}:/${repos} co $module + cvs -z3 -d:pserver:${user}@${loc}:/${repos} co $module [ "$?" != "0" ] && dlerror=1 else export CVS_RSH=ssh @@ -215,12 +215,21 @@ for dir in `ls -A --ignore="CVS" ./download`; do location="${mirror}/hdw-linux-${hdw_version}/$dir/$pkg/" echo "Downloading $dir - package $file ..." echo + # possibly the package exists mkdir -p ./download/$dir/$pkg ; cd ./download/$dir/$pkg + tolf="`find ../.. -name $file | tail -1`" + if [ -n "$tolf" ] ; then + [ -d $tolf ] && tolf="" + fi if [ -f ./$file ] ; then echo "$file allready downloaded." echo + elif [ -n "$tolf" ] ; then + ln -svf $tolf . else - $wget_cmd -c $location$file -O pkg-src.in && \ + + $wget_cmd -c $location$file \ + -O pkg-src.in && mv pkg-src.in $file echo "done." fi