From c85272705b7544edaf3dadda14581157fc18826c Mon Sep 17 00:00:00 2001
From: Marius Peper <marius.peper@astro.uni.torun.pl>
Date: Tue, 7 Jul 2020 22:58:07 +0200
Subject: Fixed typo that lead to crash when building healpy

Until now, if a project needed the healpy software package, Maneage would
crash with the following error message (abridged for full name in build
directory). This was caused by a typo in the version of 'healpix' (the
dependency of 'healpy').

  make: *** No rule to make target '.../version-info/proglib/healpix-'

With this commit, the typo in line 334 of 'python.mk' is fixed, so that
when '$(ipydir)/healpy-$(healpy-version)' gets called it correctly searches
for a rule to make '$(ibidir)/healpix-$(healpix-version)'.
---
 reproduce/software/make/python.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'reproduce/software/make')

diff --git a/reproduce/software/make/python.mk b/reproduce/software/make/python.mk
index ccfbc72..2fede35 100644
--- a/reproduce/software/make/python.mk
+++ b/reproduce/software/make/python.mk
@@ -331,7 +331,7 @@ $(ipydir)/h5py-$(h5py-version): \
 # and just ask for `healpy'. To avoid confusion in such cases, we'll just
 # set `healpy' to be dependent on `healpix' and not download any tarball
 # for it, or write anything in the final target.
-$(ipydir)/healpy-$(healpy-version): $(ibidir)/healpix-$(healpy-version)
+$(ipydir)/healpy-$(healpy-version): $(ibidir)/healpix-$(healpix-version)
 	touch $@
 
 $(ipydir)/html5lib-$(html5lib-version): \
-- 
cgit v1.2.1