diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2018-03-15 16:13:45 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2018-03-15 16:13:45 +0100 |
commit | d1a8163b872a759cc3439b8d122738c9cf76c95f (patch) | |
tree | 585a59783028ee97614aff503c5b0df6da5c9276 /build | |
parent | 6b1e07b9bad2c8c949a44fb3e09c4ece4b2111ee (diff) |
dpkg-buildpackage on jessie does not know -ui
Trailing whitespace
Diffstat (limited to 'build')
-rwxr-xr-x | build | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -54,7 +54,7 @@ then apt-get upgrade fi -# stretch needs --only-source (at least for rkward source packages), jessie +# stretch needs --only-source (at least for rkward source packages), jessie # does not know this argument if [ $DIST == "jessie" ]; then apt-get build-dep $pkg @@ -73,7 +73,11 @@ mv $pkg-* $DIST cd $DIST/$pkg-* -debuild --no-lintian -ui -uc -us -B +if [ $DIST == "jessie" ]; then + debuild --no-lintian -uc -us -B +else + debuild --no-lintian -ui -uc -us -B +fi cd ../.. |