diff options
Diffstat (limited to 'packaging/ubuntu/make-package.sh')
-rw-r--r-- | packaging/ubuntu/make-package.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packaging/ubuntu/make-package.sh b/packaging/ubuntu/make-package.sh index 3e6f4de4e..64fb34fce 100644 --- a/packaging/ubuntu/make-package.sh +++ b/packaging/ubuntu/make-package.sh @@ -99,12 +99,18 @@ rel=wily sed -i "s/${prev}/${rel}/g" debian/changelog debuild -S -# and now for wily +# and now for xenial prev=wily rel=xenial sed -i "s/${prev}/${rel}/g" debian/changelog debuild -S +# and now for yakkety +prev=wily +rel=yakkety +sed -i "s/${prev}/${rel}/g" debian/changelog +debuild -S + # and now for precise (precise can't build Qt5 based packages) # with the switch to cmake the amount of effort to build Qt4 packages # on precise just doesn't seem worth it anymore |