diff options
author | Reto Buerki <reet@codelabs.ch> | 2012-12-04 18:46:21 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-01-17 15:22:08 +0100 |
commit | beff82dd98c20570daf166b39cadcdf76a661e57 (patch) | |
tree | 8c4b0c41365eb83d969a07ba8d01529784c4efa6 /testing/scripts | |
parent | ffe710ae7136874aed62ca849c523fa62a0cdce9 (diff) | |
download | strongswan-beff82dd98c20570daf166b39cadcdf76a661e57.tar.bz2 strongswan-beff82dd98c20570daf166b39cadcdf76a661e57.tar.xz |
Adjust strongSwan version handling in HTML output
Diffstat (limited to 'testing/scripts')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 3 | ||||
-rw-r--r-- | testing/scripts/recipes/strongswan.mk | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index f321463db..85682fa21 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -75,7 +75,8 @@ for r in $RECIPES do cecho-n " - $r.." cp $RECPDIR/$r ${LOOPDIR}/root/compile - chroot ${LOOPDIR} make -C /root/compile -f $r >>$LOGFILE 2>&1 + chroot ${LOOPDIR} make SWANVERSION=$SWANVERSION -C /root/compile -f $r \ + >> $LOGFILE 2>&1 if [ $? != 0 ]; then cecho "failed" else diff --git a/testing/scripts/recipes/strongswan.mk b/testing/scripts/recipes/strongswan.mk index 4b8263112..76d2d0882 100644 --- a/testing/scripts/recipes/strongswan.mk +++ b/testing/scripts/recipes/strongswan.mk @@ -1,6 +1,6 @@ #!/usr/bin/make -PV = 5.0.1 +PV = $(SWANVERSION) PKG = strongswan-$(PV) TAR = $(PKG).tar.bz2 SRC = http://download.strongswan.org/$(TAR) |