diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-12-10 09:45:53 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-10 09:45:53 -0700 |
commit | 18159b6265696a909875271ffc265160c6a5b2a5 (patch) | |
tree | 3f5c32a39f58fa77f60590cce5f2326f86c08b7b | |
parent | 6653d98e673080da0311ceb5c7196a8677556f74 (diff) | |
download | subsurface-18159b6265696a909875271ffc265160c6a5b2a5.tar.gz |
Minor tweak to Ubuntu package building
12.04 can't build our Qt5 based package, so let's just drop it.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | packaging/ubuntu/make-package.sh | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/packaging/ubuntu/make-package.sh b/packaging/ubuntu/make-package.sh index 41c294ad8..22c0998e2 100644 --- a/packaging/ubuntu/make-package.sh +++ b/packaging/ubuntu/make-package.sh @@ -35,10 +35,8 @@ rm -f debian/autocl debuild -S +# and now for utopic (precise can't build Qt5 based packages) prev=trusty -for rel in utopic precise -do - sed -i "s/${prev}/${rel}/g" debian/changelog - debuild -S - prev=${rel} -done +rel=utopic +sed -i "s/${prev}/${rel}/g" debian/changelog +debuild -S |