1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| | diff -Nur patchelf-0.10.orig/tests/no-rpath.sh patchelf-0.10/tests/no-rpath.sh
--- patchelf-0.10.orig/tests/no-rpath.sh 1969-12-31 19:00:01.000000000 -0500
+++ patchelf-0.10/tests/no-rpath.sh 2019-11-08 13:46:44.132511756 -0500
@@ -1,4 +1,14 @@
#! /bin/sh -e
+# This test would fail under Guix since gcc always adds RUNPATH entries,
+# so `$oldRPath` below for the built `no-rpath` binary is never empty.
+#
+# Hopefully the `no-rpath-prebuild.sh` test does include a binary
+# for this architecture without a RUNPATH, and this test is redundant,
+# so just skip it (see "Scripts-based Testsuites" in Automake's manual).
+#
+# See <https://issues.guix.gnu.org/issue/38055> for more info.
+exit 77
+
SCRATCH=scratch/$(basename $0 .sh)
rm -rf ${SCRATCH}
|