Skip to content

Commit

Permalink
Fixes #25995: Embed curl for debian 11 and ubuntu 22 (and before)
Browse files Browse the repository at this point in the history
  • Loading branch information
VinceMacBuche committed Dec 2, 2024
1 parent e572487 commit 747ddac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rudder-agent/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ STRIP_OPT = --no-automatic-dbgsym
endif
# Ubuntu 20.04
ifeq (focal,$(OS_CODENAME))
WITH = --with-lmdb
WITH = --with-lmdb --with-libcurl
STRIP_OPT = --no-automatic-dbgsym
endif
# Ubuntu 22.04
ifeq (jammy,$(OS_CODENAME))
WITH = --with-lmdb
WITH = --with-lmdb --with-libcurl
STRIP_OPT = --no-automatic-dbgsym
BUILDDEB_OPT = -- -Zxz
endif
Expand Down Expand Up @@ -93,12 +93,12 @@ STRIP_OPT = --no-automatic-dbgsym
endif
# Debian 10
ifeq (buster,$(OS_CODENAME))
WITH = --with-lmdb
WITH = --with-lmdb --with-libcurl
STRIP_OPT = --no-automatic-dbgsym
endif
# Debian 11
ifeq (bullseye,$(OS_CODENAME))
WITH = --with-lmdb
WITH = --with-lmdb --with-libcurl
STRIP_OPT = --no-automatic-dbgsym
endif
# Debian 12
Expand Down

0 comments on commit 747ddac

Please sign in to comment.