-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit e0927e2. 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
- Loading branch information
1 parent
141132c
commit 04a6031
Showing
4 changed files
with
29 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
$(LIBSAIREDIS)_DEB_BUILD_PROFILES += syncd vs | ||
$(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_DBGSYM = syncd-vs-dbgsym_1.0.0_amd64.deb | ||
$(SYNCD_VS_DBGSYM)_DEPENDS += $(SYNCD_VS) | ||
$(SYNCD_VS_DBGSYM)_RDEPENDS += $(SYNCD_VS) | ||
$(eval $(call add_derived_package,$(LIBSAIREDIS),$(SYNCD_VS_DBGSYM))) | ||
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))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule sonic-sairedis
updated
18 files
+2 −2 | .azure-pipelines/build-template.yml | |
+1 −1 | .azure-pipelines/docker-sonic-vs/Dockerfile | |
+3 −5 | .azure-pipelines/test-docker-sonic-vs-template.yml | |
+8 −14 | .github/workflows/codeql-analysis.yml | |
+1 −27 | configure.ac | |
+1 −1 | debian/compat | |
+58 −12 | debian/control | |
+0 −2 | debian/libsaimetadata-dev.install | |
+0 −1 | debian/libsairedis-dev.install | |
+57 −24 | debian/rules | |
+0 −327 | m4/ax_python3_devel.m4 | |
+2 −2 | meta/Makefile.am | |
+1 −4 | pyext/Makefile.am | |
+2 −2 | pyext/py2/Makefile.am | |
+1 −1 | pyext/py3/Makefile.am | |
+0 −1 | tests/aspell.en.pws | |
+3 −20 | vslib/SwitchConfig.cpp | |
+0 −1 | vslib/saivs.h |