From c1bb5199495c380fb7e72b7fa1b07626fad726f2 Mon Sep 17 00:00:00 2001 From: Richard Tibbles Date: Tue, 3 Mar 2026 20:49:03 -0800 Subject: [PATCH] fix: replace unsupported --output-directory flag in dist target dpkg-buildpackage --output-directory was added in dpkg 1.22 but the CI runner has an older version. Build to default parent directory and move files into dist/ instead. Co-Authored-By: Claude Opus 4.6 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a1ff078..95abaea 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,8 @@ deb: error-pages orig dist: error-pages orig @mkdir -p dist echo "Building unsigned package..." - dpkg-buildpackage -S -us -uc --output-directory=dist/ + dpkg-buildpackage -S -us -uc + mv ../kolibri-server_$(VERSION)* dist/ @echo "Package built successfully!" # build and sign (signing uses environment GPG_PASSPHRASE and KEYID) sign-and-upload: dist