guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: m4: Remove already-applied patch.


From: Mark H. Weaver
Subject: 01/01: gnu: m4: Remove already-applied patch.
Date: Sat, 27 Dec 2014 01:26:23 +0000

mhw pushed a commit to branch core-updates
in repository guix.

commit 6ac8aa3d750f0ff392c3c91b7710228ab6c7831a
Author: Mark H Weaver <address@hidden>
Date:   Fri Dec 26 20:20:10 2014 -0500

    gnu: m4: Remove already-applied patch.
    
    * gnu/packages/patches/m4-readlink-EINVAL.patch: Remove file.
    * gnu-system.am (dist_patch_DATA): Remove it.
    * gnu/packages/m4.scm (m4): Remove patch.
---
 gnu-system.am                                 |    1 -
 gnu/packages/m4.scm                           |    3 +--
 gnu/packages/patches/m4-readlink-EINVAL.patch |   18 ------------------
 3 files changed, 1 insertions(+), 21 deletions(-)

diff --git a/gnu-system.am b/gnu-system.am
index 09d09ca..9790543 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -403,7 +403,6 @@ dist_patch_DATA =                                           
\
   gnu/packages/patches/lm-sensors-hwmon-attrs.patch            \
   gnu/packages/patches/luit-posix.patch                                \
   gnu/packages/patches/m4-gets-undeclared.patch                        \
-  gnu/packages/patches/m4-readlink-EINVAL.patch                        \
   gnu/packages/patches/make-impure-dirs.patch                  \
   gnu/packages/patches/mc-fix-ncurses-build.patch              \
   gnu/packages/patches/mcron-install.patch                     \
diff --git a/gnu/packages/m4.scm b/gnu/packages/m4.scm
index 0915fde..b3b3a00 100644
--- a/gnu/packages/m4.scm
+++ b/gnu/packages/m4.scm
@@ -33,8 +33,7 @@
                                 version ".tar.bz2"))
             (sha256
              (base32
-              "0w0da1chh12mczxa5lnwzjk9czi3dq6gnnndbpa6w4rj76b1yklf"))
-            (patches (list (search-patch "m4-readlink-EINVAL.patch")))))
+              "0w0da1chh12mczxa5lnwzjk9czi3dq6gnnndbpa6w4rj76b1yklf"))))
    (build-system gnu-build-system)
    (arguments
     ;; XXX: Disable tests on those platforms with know issues.
diff --git a/gnu/packages/patches/m4-readlink-EINVAL.patch 
b/gnu/packages/patches/m4-readlink-EINVAL.patch
deleted file mode 100644
index dd37158..0000000
--- a/gnu/packages/patches/m4-readlink-EINVAL.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Newer Linux kernels would return EINVAL instead of ENOENT.
-The patch below, taken from Gnulib, allows the test to pass when
-these Linux versions are in use:
-https://lists.gnu.org/archive/html/bug-gnulib/2011-03/msg00308.html .
-
-diff --git a/tests/test-readlink.h b/tests/test-readlink.h
-index 08d5662..7247fc4 100644
---- a/tests/test-readlink.h
-+++ b/tests/test-readlink.h
-@@ -38,7 +38,7 @@ test_readlink (ssize_t (*func) (char const *, char *, 
size_t), bool print)
-   ASSERT (errno == ENOENT);
-   errno = 0;
-   ASSERT (func ("", buf, sizeof buf) == -1);
--  ASSERT (errno == ENOENT);
-+  ASSERT (errno == ENOENT || errno == EINVAL);
-   errno = 0;
-   ASSERT (func (".", buf, sizeof buf) == -1);
-   ASSERT (errno == EINVAL);



reply via email to

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