From 1798c4aeca70ac8d0a243684d6a798fbc65735f8 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 20:57:42 +0100 Subject: gentoo resync : 14.07.2018 --- .../files/libcdio-paranoia-0.90-oos-tests.patch | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 dev-libs/libcdio-paranoia/files/libcdio-paranoia-0.90-oos-tests.patch (limited to 'dev-libs/libcdio-paranoia/files/libcdio-paranoia-0.90-oos-tests.patch') 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 -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 ---- - 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 - -- cgit v1.2.3