Skip to content

Commit 778158a

Browse files
guillaumelambertmssonicbld
authored andcommitted
[build] Fix isc-dhcp full version in rules.mk (sonic-net#13288)
During the build process, a dsc file is retrieved from the URL: http://deb.debian.org/debian/pool/main/i/isc-dhcp/isc-dhcp_4.4.1-2.3.dsc Depending on the DNS resolution, the server reached may respond with a HTTP 404 error code, what stops the build process. In all cases, the URL http://deb.debian.org/debian/pool/main/i/isc-dhcp/ no more lists this DSC file but one with a different format. The suffix "+deb11u1" is now appended to identify the debian version. - append this suffix to the make file rules of isc-dhcp Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com>
1 parent feef9ca commit 778158a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/isc-dhcp.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# isc-dhcp packages
22

33
ISC_DHCP_VERSION = 4.4.1
4-
ISC_DHCP_VERSION_FULL = ${ISC_DHCP_VERSION}-2.3
4+
ISC_DHCP_VERSION_FULL = ${ISC_DHCP_VERSION}-2.3+deb11u1
55

66
export ISC_DHCP_VERSION ISC_DHCP_VERSION_FULL
77

0 commit comments

Comments
 (0)