From 0129b7368b4d7ec89ffd85b47360f581d8100da1 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Mon, 6 Apr 2020 01:14:56 +0100 Subject: Corrected typo in the definition of pybuild Raul noticed this during the build: I had mistakenly put an extra `&&' at the start of the line where the line before ended with a `;'. --- 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 77743fc..a1d198d 100644 --- a/reproduce/software/make/python.mk +++ b/reproduce/software/make/python.mk @@ -349,7 +349,7 @@ pybuild = cd $(ddir); rm -rf $(2); \ -e 's|@INCDIR[@]|'"$(idir)/include"'|' \ $(3) > site.cfg; \ fi; \ - && if type pyhook_before &>/dev/null; then pyhook_before; fi \ + if type pyhook_before &>/dev/null; then pyhook_before; fi \ && python setup.py build \ && python setup.py install \ && if type pyhook_after &>/dev/null; then pyhook_after; fi \ -- cgit v1.2.1