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.
This commit is contained in:
Hartmut Goebel 2016-10-02 18:48:56 +02:00
parent 7a8894e803
commit 635a7af45d
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -137,8 +137,7 @@ (define* (ensure-no-mtimes-pre-1980 #:rest _)
#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)