diff options
author | Gabriel Oginski <gabrielx.oginski@intel.com> | 2022-10-12 13:40:05 +0000 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2022-10-12 21:16:54 +0000 |
commit | ce62d6f01ceb9373d64110e6e4cfab7dcc041e9b (patch) | |
tree | 718c67747a629be87c65511c4722935a895f646b /extras/strongswan/vpp_sswan/Makefile | |
parent | 65d25b4b1696be75d9fb4ae95367414781b06249 (diff) |
vpp-swan: fix linked library to plugin
Due to refactor keeping api common code in vlibapi, changes order
linked library to this plugin.
Type: fix
Signed-off-by: Gabriel Oginski <gabrielx.oginski@intel.com>
Change-Id: Id94c0b78cbce4954d34a82123506a76370b12b23
Diffstat (limited to 'extras/strongswan/vpp_sswan/Makefile')
-rw-r--r-- | extras/strongswan/vpp_sswan/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/strongswan/vpp_sswan/Makefile b/extras/strongswan/vpp_sswan/Makefile index cb642c8669f..336ea6ad915 100644 --- a/extras/strongswan/vpp_sswan/Makefile +++ b/extras/strongswan/vpp_sswan/Makefile @@ -32,9 +32,9 @@ CFLAGS_I=-include $(CONFIGH) \ LDFLAGS= -lvppinfra \ -lvlibmemoryclient \ - -lvppapiclient \ + -lvlibapi \ -lsvm \ - -lvlib + -lvppapiclient VERSION_VPP=$(shell (dpkg -s vpp | grep Version) | grep -Po '(?<=Version: )\d\d.\d\d') |