guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: libngspice: Delete autogenerated config.h.


From: guix-commits
Subject: 02/02: gnu: libngspice: Delete autogenerated config.h.
Date: Tue, 22 Jun 2021 10:53:05 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit 33fa648f7561ca00d2a21bc0933d0b05ee8bf6b3
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Tue Jun 22 09:53:41 2021 -0300

    gnu: libngspice: Delete autogenerated config.h.
    
    * gnu/packages/engineering.scm (libngspice)[arguments]<#:phases>: Rename 
phase
      'delete-script-files to 'delete-scripts-and-config and delete config.h.
    
    Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
 gnu/packages/engineering.scm | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 1ae9512..19c1535 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -1711,11 +1711,16 @@ high-performance parallel differential evolution (DE) 
optimization algorithm.")
              (substitute* "man/man1/Makefile.in"
                (("^man_MANS = ngspice\\.1 ngnutmeg\\.1 ngsconvert\\.1 
ngmultidec\\.1")
                 "man_MANS = "))))
-         (add-after 'install 'delete-script-files
+         (add-after 'install 'delete-scripts-and-config
            (lambda* (#:key outputs #:allow-other-keys)
              (delete-file-recursively
               (string-append (assoc-ref outputs "out")
-                             "/share/ngspice/scripts")))))
+                             "/share/ngspice/scripts"))
+             ;; This file is autogenerated by the configure script and should
+             ;; not be distributed.  It could be removed in ngspice 35.  See
+             ;; https://bugs.archlinux.org/task/70569 for reference.
+             (delete-file (string-append (assoc-ref outputs "out")
+                                         "/include/config.h")))))
        #:configure-flags
        (list "--enable-openmp"
              "--enable-ciderlib"



reply via email to

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