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