f20665008c
* [build]: put stretch debian packages under target/debs/stretch/ * in stretch build phase, all debian packages built in that stage are placed under target/debs/stretch directory. * for python-based debian packages, since they are really the same for jessie and stretch, they are placed under target/python-debs directory. Signed-off-by: Guohan Lu <gulv@microsoft.com>
18 lines
678 B
Makefile
18 lines
678 B
Makefile
# python-click package
|
|
#
|
|
# Python Click versions < 6.7 have a bug which causes bash completion
|
|
# functionality to stop working after two sublevels. sonic-utilities depends
|
|
# on this package, and the most recent version provided by Debian Jessie and
|
|
# Stretch is v6.6. We build version 6.7 from source in order to fix this bug.
|
|
# TODO: If we upgrade to a distro which provides a version >= 6.7 we will no
|
|
# longer need to build this.
|
|
|
|
PYTHON_CLICK_VERSION = 6.7-4
|
|
|
|
export PYTHON_CLICK_VERSION
|
|
|
|
PYTHON_CLICK = python-click_$(PYTHON_CLICK_VERSION)_all.deb
|
|
$(PYTHON_CLICK)_SRC_PATH = $(SRC_PATH)/python-click
|
|
SONIC_MAKE_DEBS += $(PYTHON_CLICK)
|
|
SONIC_STRETCH_DEBS += $(PYTHON_CLICK)
|