diff options
Diffstat (limited to 'backport')
-rwxr-xr-x | backport | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,7 +8,7 @@ export ARCH # R version against which the software is compiled Rversion=3.3.3 reposversion="cran3" -iteration=0 +iteration=1 # Where the buildresults should be stored and where to look for current backports rcrandir=/home/jranke/svn/website/www/ranke/r-cran @@ -24,7 +24,7 @@ rcrandir=/home/jranke/svn/website/www/ranke/r-cran usage() { -echo "Usage: ./backport [options] sourcepackage stretch|jessie" +echo "Usage: ./backport [options] sourcepackage stretch|jessie|wheezy" echo "Options:" echo " -k, --keep Keep copied source package and directory used for package building" echo " -s, --skip Skip apt-get update/upgrade and pbuilder update" @@ -60,7 +60,7 @@ pkg=$1 DIST=$2 # Validate distribution argument -if [ $DIST != "stretch" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi +if [ $DIST != "stretch" ] && [ $DIST != "jessie" ] && [ $DIST != "wheezy" ]; then usage; exit 1; fi export DIST # Set required r-base-dev version for packages build-depending on R |