guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/08: build-system/python: Ignore symlinks when changing mtime.


From: guix-commits
Subject: 02/08: build-system/python: Ignore symlinks when changing mtime.
Date: Wed, 2 Aug 2023 06:38:40 -0400 (EDT)

lbraun pushed a commit to branch pyproject-toml
in repository guix.

commit f4697d0da0018e66ae759a9495a82f364cad5ccd
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Sat May 13 15:31:06 2023 +0200

    build-system/python: Ignore symlinks when changing mtime.
    
    * guix/build/python-build-system.scm (ensure-no-mtimes-pre-1980): Ignore
    'symlink.
---
 guix/build/python-build-system.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/guix/build/python-build-system.scm 
b/guix/build/python-build-system.scm
index aa04664b25..8e18d6d0df 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -37,6 +37,7 @@
   #:use-module (srfi srfi-26)
   #:export (%standard-phases
             add-installed-pythonpath
+            ensure-no-mtimes-pre-1980
             site-packages
             python-version
             python-build))
@@ -270,7 +271,8 @@ installed with setuptools."
   ;; timestamps before 1980.
   (let ((early-1980 315619200))  ; 1980-01-02 UTC
     (ftw "." (lambda (file stat flag)
-               (unless (<= early-1980 (stat:mtime stat))
+               (unless (or (<= early-1980 (stat:mtime stat))
+                           (eq? (stat:type stat) 'symlink))
                  (utime file early-1980 early-1980))
                #t))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]