summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2018-03-15 16:13:45 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2018-03-15 16:13:45 +0100
commitd1a8163b872a759cc3439b8d122738c9cf76c95f (patch)
tree585a59783028ee97614aff503c5b0df6da5c9276
parent6b1e07b9bad2c8c949a44fb3e09c4ece4b2111ee (diff)
dpkg-buildpackage on jessie does not know -ui
Trailing whitespace
-rwxr-xr-xbuild8
1 files changed, 6 insertions, 2 deletions
diff --git a/build b/build
index 62ba7a1..54c3d4c 100755
--- a/build
+++ b/build
@@ -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 ../..

Contact - Imprint