diff options
author | Lee Garrett <lgarrett@rocketjump.eu> | 2023-01-31 12:18:40 +0100 |
---|---|---|
committer | Lee Garrett <lgarrett@rocketjump.eu> | 2023-01-31 12:18:40 +0100 |
commit | 4d90cf637393f5a072d075d809df4b272c75b243 (patch) | |
tree | 9d03c987506dba396e7f4ee5f3245ed5a04463a7 | |
parent | 8707c10c6a1e1e78d669c3fd8d7521f3302fe020 (diff) | |
download | debian-ansible-core-4d90cf637393f5a072d075d809df4b272c75b243.zip |
Refresh 0005-use-py3.patch
-rw-r--r-- | debian/patches/0005-use-py3.patch | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/debian/patches/0005-use-py3.patch b/debian/patches/0005-use-py3.patch index cc046fe6..0fcb62ea 100644 --- a/debian/patches/0005-use-py3.patch +++ b/debian/patches/0005-use-py3.patch @@ -272,12 +272,3 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ # fetch version from project release.py as single source-of-truth VERSION := $(shell $(PYTHON) ../../packaging/release/versionhelper/version_helper.py --raw || echo error) ifeq ($(findstring error,$(VERSION)), error) -@@ -82,7 +82,7 @@ - ansible_structure: - # We must have python and python-packaging for the version_helper - # script so use it for version comparison -- if python -c "import sys, packaging.version as p; sys.exit(not p.Version('$(MAJOR_VERSION)') > p.Version('2.10'))" ; then \ -+ if $(PYTHON) -c "import sys, packaging.version as p; sys.exit(not p.Version('$(MAJOR_VERSION)') > p.Version('2.10'))" ; then \ - echo "Creating symlinks in ansible_structure"; \ - ln -sf ../rst/ansible_index.rst rst/index.rst; \ - ln -sf ../dev_guide/ansible_index.rst rst/dev_guide/index.rst; \ |