aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaul Infante-Sainz <infantesainz@gmail.com>2019-05-24 17:16:39 +0100
committerRaul Infante-Sainz <infantesainz@gmail.com>2019-05-24 17:16:39 +0100
commit53b8dae45dc959bbd37783932e3eee7f0dccad5c (patch)
treea4640c39699d46d6a7bf1cba33052ece30a046e6
parent47b74e7e9006fcc1183a5571e7b4aab668b76a7b (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.
-rw-r--r--.file-metadatabin6829 -> 6829 bytes
-rw-r--r--reproduce/software/make/python.mk2
2 files changed, 1 insertions, 1 deletions
diff --git a/.file-metadata b/.file-metadata
index 58dcf8d..0e13322 100644
--- a/.file-metadata
+++ b/.file-metadata
Binary files differ
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 \