From 56157ad9495765d9982875d2e14ab2b29d17692c Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Wed, 20 Sep 2017 16:59:41 +0200 Subject: Make the build script work for rkward It seems that apt-get build-dep and apt-get source have problems with source packages that have a .debian.xz instead of a .diff.gz. Maybe this is related to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607999 --- build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build b/build index bc4806c..ee53ec8 100755 --- a/build +++ b/build @@ -53,8 +53,8 @@ then apt-get update apt-get upgrade fi -apt-get build-dep $pkg -apt-get source $pkg +apt --only-source build-dep $pkg +apt --only-source source $pkg # Move sources to $DIST directory to enable parallel builds mkdir -p $DIST -- cgit v1.2.1