diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2020-04-06 01:14:56 +0100 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2020-04-06 01:14:56 +0100 |
commit | 0129b7368b4d7ec89ffd85b47360f581d8100da1 (patch) | |
tree | da366eb0f8349ce04d57a96a372764e29d4bd89f | |
parent | d17c12058c074855587e31eac0f064a856336ba0 (diff) |
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 `;'.
-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 \ |