a1d30e3aa0
Remove Python 2 package installation from the base image. For container builds, reference Python 2 packages only if we're not building for Bullseye. For libyang, don't build Python 2 bindings at all, since they don't seem to be used. Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
9 lines
300 B
Makefile
9 lines
300 B
Makefile
ifeq ($(ENABLE_PY2_MODULES), y)
|
|
# redis_dump_load python2 wheel
|
|
|
|
REDIS_DUMP_LOAD_PY2 = redis_dump_load-1.1-py2-none-any.whl
|
|
$(REDIS_DUMP_LOAD_PY2)_SRC_PATH = $(SRC_PATH)/redis-dump-load
|
|
$(REDIS_DUMP_LOAD_PY2)_PYTHON_VERSION = 2
|
|
SONIC_PYTHON_WHEELS += $(REDIS_DUMP_LOAD_PY2)
|
|
endif
|