From 78cb60b85fc59c1868622d042714ca712fadaf51 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Sat, 21 Nov 2020 11:54:18 +0000 Subject: [PATCH] EDGEPLAT-2958 remove deb-compression, defaulting to gzip dpkg does not support bzip2 compression, so fails to unpack and install the built package. By omitting the option, fpm defaults to gzip which is the default supported option by dpkg. Signed-off-by: Joe Groocock --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 959e35af..2d545cde 100644 --- a/Makefile +++ b/Makefile @@ -105,7 +105,7 @@ define build_package mkdir -p $(PACKAGE_DIR) cp cloudflared $(PACKAGE_DIR)/cloudflared cat cloudflared_man_template | sed -e 's/\$${VERSION}/$(VERSION)/; s/\$${DATE}/$(DATE)/' > $(PACKAGE_DIR)/cloudflared.1 - fakeroot fpm -C $(PACKAGE_DIR) -s dir -t $(1) --$(1)-compression bzip2 \ + fakeroot fpm -C $(PACKAGE_DIR) -s dir -t $(1) \ --description 'Cloudflare Argo tunnel daemon' \ --vendor 'Cloudflare' \ --license 'Cloudflare Service Agreement' \