Skip to content

Commit

Permalink
Fix Buster and future Debian packaging config
Browse files Browse the repository at this point in the history
  • Loading branch information
srh committed Nov 22, 2019
1 parent df3a991 commit ebdbbcd
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions mk/packaging.mk
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,16 @@ ifneq ($(UBUNTU_RELEASE),)
endif
else ifneq ($(DEB_RELEASE),)
ifneq ($(filter $(DEB_RELEASE), jessie),)
DEB_BUILD_DEPENDS += , g++, libssl-dev
DEB_BUILD_DEPENDS += , g++
else
# As with Ubuntus.
DEB_BUILD_DEPENDS += , clang, libssl1.0-dev
DEB_BUILD_DEPENDS += , clang
DSC_CONFIGURE_DEFAULT += CXX=clang++
endif
ifneq ($(filter $(DEB_RELEASE), stretch),)
DEB_BUILD_DEPENDS += , libssl1.0-dev
else
DEB_BUILD_DEPENDS += , libssl-dev
endif
endif

ifneq (1,$(BUILD_PORTABLE))
Expand Down

0 comments on commit ebdbbcd

Please sign in to comment.