From: Benoît Ganne Date: Fri, 22 Apr 2022 08:10:37 +0000 (+0200) Subject: build: fix 16-8-8 mtrie build option X-Git-Tag: v22.10-rc0~73 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=4e6222d598d5ec9db1b1e06bb3a45aca76a37daa;p=vpp.git build: fix 16-8-8 mtrie build option VPP_IP_FIB_MTRIE_16 should be defined only if the option is enabled instead of being defined as "ON" or "OFF". Type: fix Change-Id: Ib4e29a827bcbd84c8012f05ad264c1408ffccee7 Signed-off-by: Benoît Ganne --- diff --git a/src/vpp/vnet/config.h.in b/src/vpp/vnet/config.h.in index 5f2749d2c34..1402e8101ff 100644 --- a/src/vpp/vnet/config.h.in +++ b/src/vpp/vnet/config.h.in @@ -17,6 +17,6 @@ #define included_vpp_vnet_config_h #define VPP_SANITIZE_ADDR_OPTIONS "@VPP_SANITIZE_ADDR_OPTIONS@" -#define VPP_IP_FIB_MTRIE_16 "@VPP_IP_FIB_MTRIE_16@" +#cmakedefine VPP_IP_FIB_MTRIE_16 #endif