04a6031b2d
This reverts commit e0927e28af
.
Why I did it
Reverts #15720
It breaks build for target/debs/bullseye/syncd_1.0.0_amd64.deb
make[2]: Entering directory '/sonic/src/sonic-sairedis'
dh_install
# Note: escape with an extra symbol
if [ -f debian/syncd-rpc/usr/bin/syncd_init_common.sh ] ; then
/bin/sh: 1: Syntax error: end of file unexpected (expecting "fi")
make[2]: *** [debian/rules:65: override_dh_install] Error 2
make[2]: Leaving directory '/sonic/src/sonic-sairedis'
make[1]: *** [debian/rules:51: binary] Error 2
make[1]: Leaving directory '/sonic/src/sonic-sairedis'
dpkg-buildpackage: error: fakeroot debian/rules binary subprocess returned exit status 2
Work item tracking
Microsoft ADO (number only): 24691535
How I did it
How to verify it
11 lines
405 B
Makefile
11 lines
405 B
Makefile
$(LIBSAIREDIS)_DPKG_TARGET = binary-syncd-vs
|
|
|
|
SYNCD_VS = syncd-vs_1.0.0_amd64.deb
|
|
$(SYNCD_VS)_RDEPENDS += $(LIBSAIREDIS) $(LIBSAIMETADATA) $(LIBSAIVS)
|
|
$(eval $(call add_derived_package,$(LIBSAIREDIS),$(SYNCD_VS)))
|
|
|
|
SYNCD_VS_DBG = syncd-vs-dbg_1.0.0_amd64.deb
|
|
$(SYNCD_VS_DBG)_DEPENDS += $(SYNCD_VS)
|
|
$(SYNCD_VS_DBG)_RDEPENDS += $(SYNCD_VS)
|
|
$(eval $(call add_derived_package,$(LIBSAIREDIS),$(SYNCD_VS_DBG)))
|