summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2016-10-02 18:48:56 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2016-10-13 17:22:42 +0200
commit635a7af45d6e2105ad65d1a9531126cc232a2a50 (patch)
tree4c5677921531d74ce784024d08687f23e4deec4a
parent7a8894e803d4fab62bdf4525be1564f2cee6a3d4 (diff)
downloadguix-patches-635a7af45d6e2105ad65d1a9531126cc232a2a50.tar
guix-patches-635a7af45d6e2105ad65d1a9531126cc232a2a50.tar.gz
guix: python-build-system: Fix an outdated comment.
The python-build-system uses phases the build and install, but not configure. So the old comment was plain wrong since Sept. 2013, when the build phase has been added.
-rw-r--r--guix/build/python-build-system.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/build/python-build-system.scm b/guix/build/python-build-system.scm
index 9109fb4ac7..e906e60699 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -137,8 +137,7 @@ installed with setuptools."
#t))
(define %standard-phases
- ;; 'configure' and 'build' phases are not needed. Everything is done during
- ;; 'install'.
+ ;; 'configure' phase is not needed.
(modify-phases gnu:%standard-phases
(add-after 'unpack 'ensure-no-mtimes-pre-1980 ensure-no-mtimes-pre-1980)
(delete 'configure)