summaryrefslogtreecommitdiffstats
path: root/packaging/ubuntu
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2021-02-17 09:05:56 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2021-02-17 09:07:20 -0800
commit74021afd97c572a0ba35da1093c276db38826627 (patch)
tree49890dd98b3ba5a7521c72d7d3cd010d43d8e140 /packaging/ubuntu
parent5b3cb5898fead63750ea860417d1853710832d34 (diff)
downloadsubsurface-74021afd97c572a0ba35da1093c276db38826627.tar.gz
build-system: don't check dependencies when creating Ubuntu package
There is no reason to check that on the system that is simply used to submit the package to Launchpad. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ubuntu')
-rw-r--r--packaging/ubuntu/make-package.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/ubuntu/make-package.sh b/packaging/ubuntu/make-package.sh
index b6b681b1f..d4e55366c 100644
--- a/packaging/ubuntu/make-package.sh
+++ b/packaging/ubuntu/make-package.sh
@@ -108,7 +108,7 @@ fi
cp debian/changelog ../changelog$SUFFIX
-debuild -S
+debuild -S -d
#create builds for the newer Ubuntu releases that Launchpad supports
rel=bionic
@@ -116,7 +116,7 @@ others="focal groovy"
for next in $others
do
sed -i "s/${rel}/${next}/g" debian/changelog
- debuild -S
+ debuild -S -d
rel=$next
done