projects
/
hdw-linux
/
hdw-linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d70e331
)
fixed link problem in download script
author
hackbard
<hackbard>
Wed, 25 May 2005 12:33:43 +0000
(12:33 +0000)
committer
hackbard
<hackbard>
Wed, 25 May 2005 12:33:43 +0000
(12:33 +0000)
doc/CHANGELOG
patch
|
blob
|
history
scripts/Download
patch
|
blob
|
history
diff --git
a/doc/CHANGELOG
b/doc/CHANGELOG
index 967dd9aeae676b42a90301084decf5e188cb731b..62973d678c1aa82fd57538bf9f94966daf7a3508 100644
(file)
--- a/
doc/CHANGELOG
+++ b/
doc/CHANGELOG
@@
-1,3
+1,7
@@
+*) 2005-05-25
+
+- fixed link bug in download script
+
*) 2005-05-14
- some more adaptions
diff --git
a/scripts/Download
b/scripts/Download
index 830ebd2bf166ab1f719b4bd5e8de1cdfdd2339e8..cd73b12def443f25645149c05c1d3c6574fd0999 100755
(executable)
--- a/
scripts/Download
+++ b/
scripts/Download
@@
-217,11
+217,11
@@
for dir in `ls -A --ignore="CVS" ./download`; do
echo
# possibly the package exists
mkdir -p ./download/$dir/$pkg ; cd ./download/$dir/$pkg
+ tolf="`find ../.. -name $file | tail -1`"
if [ -f ./$file ] ; then
echo "$file allready downloaded."
echo
- elif [ -n "`find ../../.. -name $file`" ] ; then
- tolf="`echo $bar | awk '{ print $1 }'`"
+ elif [ -n "$tolf" ] ; then
ln -svf $tolf .
else