~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to buildjail.sh

  • Committer: dcoles
  • Date: 2008-07-03 04:43:49 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:805
Setup: Now you can supply a --mirror or -m option to `./setup build` to specify 
which mirror to use to build the jail from. Default is still AARNET, but at 
least is can be changed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    python-beautifulsoup python-lxml python-imaging \
38
38
    python-simpletal python-nltk" # elementtree-1.3beta (needs tidy)
39
39
 
40
 
# FIXME: [nasty-hack] Override the default mirror to the local AARNET one.  
41
 
# This should really be a local configuration option, but unfortunately 
42
 
# setup.py is a bit of a mess and needs a clean up to support this. For the 
43
 
# mean time we'll override it here.
44
 
MIRROR=http://mirror.aarnet.edu.au/pub/ubuntu/archive/
45
 
# [/nasty-hack]
 
40
# FIXME: [hack] Override the default mirror to the local AARNET one.  This 
 
41
# should really be a local configuration option, but unfortunately setup.py is 
 
42
# a bit of a mess and needs a clean up to support this. For the mean time we'll 
 
43
# override it here.
46
44
 
47
45
if [ "x$MIRROR" = "x" ]; then
48
 
    MIRROR=http://archive.ubuntu.com/ubuntu/
 
46
    MIRROR=http://mirror.aarnet.edu.au/pub/ubuntu/archive/
 
47
    #MIRROR=http://archive.ubuntu.com/ubuntu/ # Default Mirror
49
48
fi
50
49
echo "Using Mirror: $MIRROR"
51
50