53d8b1a382
* Fix debug package variables for syncd PR #16072 renamed the debug package variables from `*_DBG` to `*_DBGSYM`, since the package names had changed. However, the references weren't updated. Since all the other debug packages (including ones that are named `*-dbgsym`) use `*_DBG`, just use that here as well. Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com> * Update sairedis.mk as well Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com> --------- Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
11 lines
435 B
Makefile
11 lines
435 B
Makefile
$(LIBSAIREDIS)_DEB_BUILD_PROFILES += syncd vs
|
|
|
|
SYNCD_VS = syncd-vs_1.0.0_$(CONFIGURED_ARCH).deb
|
|
$(SYNCD_VS)_RDEPENDS += $(LIBSAIREDIS) $(LIBSAIMETADATA) $(LIBSAIVS)
|
|
$(eval $(call add_derived_package,$(LIBSAIREDIS),$(SYNCD_VS)))
|
|
|
|
SYNCD_VS_DBG = syncd-vs-dbgsym_1.0.0_$(CONFIGURED_ARCH).deb
|
|
$(SYNCD_VS_DBG)_DEPENDS += $(SYNCD_VS)
|
|
$(SYNCD_VS_DBG)_RDEPENDS += $(SYNCD_VS)
|
|
$(eval $(call add_derived_package,$(LIBSAIREDIS),$(SYNCD_VS_DBG)))
|