2012-04-18 16:17:35 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -- makefile --
|
|
|
|
|
2016-03-17 17:13:39 +00:00
|
|
|
DEB_PYTHON2_MODULE_PACKAGES=ansible
|
|
|
|
|
2012-04-18 16:17:35 +00:00
|
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
|
|
include /usr/share/cdbs/1/class/python-distutils.mk
|
2017-07-12 14:46:26 +00:00
|
|
|
|
2018-02-19 11:24:53 +00:00
|
|
|
ifeq ($(shell lsb_release -cs), precise)
|
|
|
|
export ANSIBLE_CRYPTO_BACKEND = pycrypto
|
|
|
|
endif
|
2017-07-12 21:28:56 +00:00
|
|
|
ifeq ($(shell lsb_release -cs), trusty)
|
2017-07-12 14:46:26 +00:00
|
|
|
export ANSIBLE_CRYPTO_BACKEND = pycrypto
|
|
|
|
endif
|
|
|
|
|