diff options
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 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 \ |