From 53b8dae45dc959bbd37783932e3eee7f0dccad5c Mon Sep 17 00:00:00 2001 From: Raul Infante-Sainz Date: Fri, 24 May 2019 17:16:39 +0100 Subject: PyYAML decompressed tarball directory name fixed Until this commit, the name of the decompressed tarball directory of PyYAML Python package was wrong. It has to be `PyYAML-version' instead of `pyyaml-version'. When I run the installation on Mac OS system it went up to the end of the installation with no error. However, when I tried to install it on a GNU/Linux system, it complained about no finding the `pyyaml-version' directory, which is the expected because the name was wrong! With this commit, I have fixed this issue by writting correctly the name of the decompressed tarball directory. --- reproduce/software/make/python.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'reproduce/software/make/python.mk') diff --git a/reproduce/software/make/python.mk b/reproduce/software/make/python.mk index 3e44451..65d28de 100644 --- a/reproduce/software/make/python.mk +++ b/reproduce/software/make/python.mk @@ -472,7 +472,7 @@ $(ipydir)/pyyaml: $(tdir)/pyyaml-$(pyyaml-version).tar.gz \ $(ibidir)/yaml \ $(ipydir)/cython \ $(ipydir)/setuptools - $(call pybuild, tar xf, $<, pyyaml-$(pyyaml-version), ,\ + $(call pybuild, tar xf, $<, PyYAML-$(pyyaml-version), ,\ PyYAML $(pyyaml-version)) $(ipydir)/requests: $(tdir)/requests-$(requests-version).tar.gz \ -- cgit v1.2.1