diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2011-11-18 01:07:18 -0800 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2011-11-18 01:07:18 -0800 |
commit | deaf71de9909015a3906ee8502115d49f748b35f (patch) | |
tree | c7bbff769dc4f5985f076516ae1c184e552dcd8b /xorg/X11R7.6/buildx.sh | |
parent | 43ed6cc52971966e6704fbd6cda0e6aa37a4dcf7 (diff) | |
download | xrdp-proprietary-deaf71de9909015a3906ee8502115d49f748b35f.tar.gz xrdp-proprietary-deaf71de9909015a3906ee8502115d49f748b35f.zip |
added python
Diffstat (limited to 'xorg/X11R7.6/buildx.sh')
-rwxr-xr-x | xorg/X11R7.6/buildx.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xorg/X11R7.6/buildx.sh b/xorg/X11R7.6/buildx.sh index 69b035d5..fbab9b7a 100755 --- a/xorg/X11R7.6/buildx.sh +++ b/xorg/X11R7.6/buildx.sh @@ -68,6 +68,11 @@ download_file() status=$? cd .. return $status + elif [ "$file" = "Python-2.5.6.tar.bz2" ]; then + wget -cq http://www.python.org/ftp/python/2.5.6/Python-2.5.6.tar.bz2 + status=$? + cd .. + return $status else wget -cq $download_url/$file status=$? @@ -206,6 +211,7 @@ fi export PREFIX_DIR=$1 export PKG_CONFIG_PATH=$PREFIX_DIR/lib/pkgconfig:$PREFIX_DIR/share/pkgconfig +export PATH=$PREFIX_DIR/bin:$PATH # prefix dir must exist... if [ ! -d $PREFIX_DIR ]; then |