diff options
author | Kevin Smith <git@kismith.co.uk> | 2015-11-10 18:43:33 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2015-11-11 13:50:14 (GMT) |
commit | 5e4dd6c3b0c5334f016330868887d6e3a6ae7d53 (patch) | |
tree | ab3f047cc298802242131a511311d9e986f5cdf1 /Swift/Packaging | |
parent | ab651834c9088e34e6e66eb105e0fb855f1572c4 (diff) | |
download | swift-5e4dd6c3b0c5334f016330868887d6e3a6ae7d53.zip swift-5e4dd6c3b0c5334f016330868887d6e3a6ae7d53.tar.bz2 |
Update .deb platforms
Test-Information:
Built using the script
Change-Id: Id4f6dd0d36e975341b5b30298db4541fbe018b2e
Diffstat (limited to 'Swift/Packaging')
-rwxr-xr-x | Swift/Packaging/Debian/package_all_platforms.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Swift/Packaging/Debian/package_all_platforms.sh b/Swift/Packaging/Debian/package_all_platforms.sh index 47c6b82..7a5e7d3 100755 --- a/Swift/Packaging/Debian/package_all_platforms.sh +++ b/Swift/Packaging/Debian/package_all_platforms.sh @@ -10,19 +10,19 @@ export SWIFT_DEBUILD_FLAGS="-S" export SWIFT_FORCE_LUCID="yep" -./package.sh +#./package.sh -for distro in lucid squeeze; do - for arch in i386 amd64; do - pbuilder-dist $distro $arch build *.dsc - done -done +#for distro in lucid squeeze; do +# for arch in i386 amd64; do +# pbuilder-dist $distro $arch build *.dsc +# done +#done unset SWIFT_FORCE_LUCID ./package.sh -for distro in maverick sid; do - for arch in i386 amd64; do +for distro in trusty wily jessie sid; do + for arch in amd64; do pbuilder-dist $distro $arch build *.dsc done done |