diff options
author | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-05-24 17:16:39 +0100 |
---|---|---|
committer | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-05-24 17:16:39 +0100 |
commit | 53b8dae45dc959bbd37783932e3eee7f0dccad5c (patch) | |
tree | a4640c39699d46d6a7bf1cba33052ece30a046e6 /reproduce | |
parent | 47b74e7e9006fcc1183a5571e7b4aab668b76a7b (diff) |
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.
Diffstat (limited to 'reproduce')
-rw-r--r-- | reproduce/software/make/python.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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 \ |