So I'm working with the rc12 pdaXrom builder, and I've noticed a lot of the remote download sources aren't available anymore for the packages.
So, here's a little script I wrote to help do a 'make get'
It will try to get from the standard sources, but if they fail, it will get from pdaXrom's rc12 src tree, and re-try the 'make get'
It's helpful for me, and I figured it might be of use to someone else who is using the same builder package..
loki pdaXrom-builder # ls -l fetch_sources.sh
-rwxr-xr-x 1 root root 217 Dec 2 12:15 fetch_sources.sh
loki pdaXrom-builder # cat fetch_sources.sh
#!/bin/bash
make get 2>/tmp/error.log
cd src
FILE=`tail -n 2 /tmp/error.log | grep Error | sed -e 's/^.*\/\(.*\)\].*$/http:\/\/212.10.30.205\/rc12\/src\/\1/g'`
wget $FILE
cd ..
echo "restarting..."
./fetch_sources.sh
loki pdaXrom-builder #