Skip to content

Commit 78cb60b

Browse files
frebibadamchalmers
authored andcommitted
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 <[email protected]>
1 parent a08a703 commit 78cb60b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ define build_package
105105
mkdir -p $(PACKAGE_DIR)
106106
cp cloudflared $(PACKAGE_DIR)/cloudflared
107107
cat cloudflared_man_template | sed -e 's/\$${VERSION}/$(VERSION)/; s/\$${DATE}/$(DATE)/' > $(PACKAGE_DIR)/cloudflared.1
108-
fakeroot fpm -C $(PACKAGE_DIR) -s dir -t $(1) --$(1)-compression bzip2 \
108+
fakeroot fpm -C $(PACKAGE_DIR) -s dir -t $(1) \
109109
--description 'Cloudflare Argo tunnel daemon' \
110110
--vendor 'Cloudflare' \
111111
--license 'Cloudflare Service Agreement' \

0 commit comments

Comments
 (0)