diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2012-04-06 14:49:08 +0200 |
---|---|---|
committer | X2Go Admin Account <x2go-admin@Debian-60-squeeze-64-minimal.(none)> | 2012-04-06 14:49:28 +0200 |
commit | f277336772b21b7e39126b2f5cd4a1e47f7cc264 (patch) | |
tree | 20ac774f469da6a76838f0614aba149101f629f8 /home | |
parent | 6173a37e64502a3da443cc33de91fb14358bd035 (diff) | |
download | buildscripts-f277336772b21b7e39126b2f5cd4a1e47f7cc264.tar.gz buildscripts-f277336772b21b7e39126b2f5cd4a1e47f7cc264.tar.bz2 buildscripts-f277336772b21b7e39126b2f5cd4a1e47f7cc264.zip |
fix build of lenny packages, Debian lenny is now only available via archive.debian.org
Diffstat (limited to 'home')
-rw-r--r-- | home/.pbuilderrc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/home/.pbuilderrc b/home/.pbuilderrc index f52a77f..7043228 100644 --- a/home/.pbuilderrc +++ b/home/.pbuilderrc @@ -37,6 +37,7 @@ if [ "x$ARCH" = "xarmel" ]; then MEMORY_MEGS=256 INITRD="" else + SMP="2" MEMORY_MEGS=512 INITRD=/srv/pbuilder/qemu-kernels/$ARCH/initrd.img fi @@ -44,6 +45,10 @@ fi if [ "x${DIST}" = "xubuntu" ]; then MIRRORSITE="http://localhost:3142/ubuntu" elif [ "x${DIST}" = "xdebian" ]; then - MIRRORSITE="http://localhost:3142/debian" + if [ "x${CODENAME}" = "xlenny" ]; then + MIRRORSITE="http://localhost:3142/archive.debian.org/debian" + else + MIRRORSITE="http://localhost:3142/debian" + fi fi |