summaryrefslogtreecommitdiff
path: root/dev-libs/libcdio-paranoia/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-04-28 20:21:43 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-04-28 20:21:43 +0100
commit40aaaa64e86ba6710bbeb31c4615a6ce80e75e11 (patch)
tree758c221bad35c9288d0bd6df9c7dfc226728e52c /dev-libs/libcdio-paranoia/files
parent8d5dbd847cbc704a6a06405856e94b461011afe3 (diff)
gentoo resync : 28.04.2021
Diffstat (limited to 'dev-libs/libcdio-paranoia/files')
-rw-r--r--dev-libs/libcdio-paranoia/files/libcdio-paranoia-0.90-oos-tests.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-libs/libcdio-paranoia/files/libcdio-paranoia-0.90-oos-tests.patch b/dev-libs/libcdio-paranoia/files/libcdio-paranoia-0.90-oos-tests.patch
deleted file mode 100644
index 86cf9da8d0fd..000000000000
--- a/dev-libs/libcdio-paranoia/files/libcdio-paranoia-0.90-oos-tests.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 4803c621d4f907402f29eba8cc3a6515bdda2ee2 Mon Sep 17 00:00:00 2001
-From: Sergei Trofimovich <slyfox@gentoo.org>
-Date: Mon, 12 Jun 2017 21:20:35 +0100
-Subject: [PATCH] configure.ac: fix out-of-tree tests
-
-To reproduce the test failure one needs to run
-configure using absolute path in a directory
-outside source tree. For example:
-
- $ $(pwd)/../libcdio-paranoia/configure
- $ make
- $ make check
-
-This will cause 'native_abs_top_srcdir' to contain wrong path.
-
-It happens because '[]' is an escape in autoconf.
-As a the following configure.ac snippet:
- [\\/]* | ?:[\\/]* ) # Absolute name.
-gets translated into the following shell code:
- \\/* | ?:\\/* ) # Absolute name.
-
-The fix is to change quotes from '[]' for a short while.
-
-Reported-by: eroen
-Reported-by: Paolo Pedroni
-Bug: https://bugs.gentoo.org/546388
-Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
----
- configure.ac | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index a502273..608277b 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -243,7 +243,9 @@ dnl native_abs_top_srcdir is used here.
- case $srcdir in
- .) # We are building in place.
- native_abs_top_srcdir=$ac_pwd ;;
-+ changequote(`,')
- [\\/]* | ?:[\\/]* ) # Absolute name.
-+ changequote([,])
- native_abs_top_srcdir=$srcdir ;;
- *) # Relative name.
- native_abs_top_srcdir=$ac_pwd/$srcdir ;;
---
-2.13.1
-