diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-15 12:47:24 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-15 13:02:52 -0800 |
commit | 90f931dabe60debd0ced83b48e8bae3f10805797 (patch) | |
tree | e71f57262e756f261aa75d61fac7d1f7ace4f54a /packaging/ubuntu/make-package.sh | |
parent | 218a1a317e98957cdd01541421bd2fdfe40f20e6 (diff) | |
download | subsurface-90f931dabe60debd0ced83b48e8bae3f10805797.tar.gz |
Attempt to build for Ubuntu 12.04 as well
And fix a silly typo in the Debian/Ubuntu control file
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ubuntu/make-package.sh')
-rw-r--r-- | packaging/ubuntu/make-package.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packaging/ubuntu/make-package.sh b/packaging/ubuntu/make-package.sh index 2b78fba16..fa3a4f438 100644 --- a/packaging/ubuntu/make-package.sh +++ b/packaging/ubuntu/make-package.sh @@ -68,6 +68,14 @@ rel=utopic sed -i "s/${prev}/${rel}/g" debian/changelog debuild -S +# and now for precise +prev=utopic +rel=precise +sed -i "s/${prev}/${rel}/g" debian/changelog +cp debian/12.04.control debian/control +cp debian/12.04.rules debian/rules +debuild -S + cd .. if [[ "$1x" = "postx" ]] ; then |