53891c5602
#### Why I did it Mellanox builds were failing intermittently due to the `issue_version` file and MFT package not building correctly in the Azure pipeline environment (both of these packages were patched to build correctly with bullseye running on the host and buster running on the dockers) #### How I did it Fixed two problems: 1. BLDENV is not passed to the Makefiles so the references to this were replaced with correct logic 2. `issue_version` was not defined as a target for bullseye and as such was not cached. Altered the build such that it is defined as a target for bullseye (in the case of buster it builds the file, in the case of bullseye it copies from buster) The previous PR fixing this was reverted as it is no longer necessary for a passing build and was not a long-term fix. https://github.com/Azure/sonic-buildimage/pull/9235 #### How to verify it Build on AZP and verify success.
31 lines
908 B
Makefile
31 lines
908 B
Makefile
#
|
|
# Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES.
|
|
# Apache-2.0
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
# ISSU version
|
|
|
|
ISSU_VERSION_FILE = issu-version
|
|
$(ISSU_VERSION_FILE)_SRC_PATH = $(PLATFORM_PATH)/issu-version
|
|
|
|
ifeq ($(BLDENV), buster)
|
|
$(ISSU_VERSION_FILE)_DEPENDS += $(APPLIBS)
|
|
endif
|
|
|
|
SONIC_MAKE_FILES += $(ISSU_VERSION_FILE)
|
|
|
|
MLNX_FILES += $(ISSU_VERSION_FILE)
|
|
|
|
export ISSU_VERSION_FILE
|