Blame SOURCES/0569-meson-remove-strange-dep-that-causes-meson-to-enter-.patch
|
|
df98bb |
From 7fb2d86b58201341a582b739a5445821bec66eea Mon Sep 17 00:00:00 2001
|
|
|
df98bb |
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
|
|
df98bb |
Date: Wed, 6 Nov 2019 12:44:39 +0100
|
|
|
df98bb |
Subject: [PATCH] meson: remove strange dep that causes meson to enter infinite
|
|
|
df98bb |
loop
|
|
|
df98bb |
|
|
|
df98bb |
The value is obviously bogus, but didn't seem to cause problems so far.
|
|
|
df98bb |
With meson-0.52.0, it causes a hang. The number of aliases is always rather
|
|
|
df98bb |
small (usually just one or two, possibly up to a dozen in a few cases), so
|
|
|
df98bb |
even if this causes some looping, it is strange that it has such a huge impact.
|
|
|
df98bb |
But let's just remove it.
|
|
|
df98bb |
|
|
|
df98bb |
Fixes #13742.
|
|
|
df98bb |
|
|
|
df98bb |
Tested with meson-0.52.0-1.module_f31+6771+f5d842eb.noarch,
|
|
|
df98bb |
meson-0.51.1-1.fc29.noarch.
|
|
|
df98bb |
|
|
|
df98bb |
(cherry picked from commit af336643a01d0b210b18312c253a50594ba54b0a)
|
|
|
df98bb |
|
|
|
df98bb |
Resolves: #1970860
|
|
|
df98bb |
---
|
|
|
df98bb |
man/meson.build | 1 -
|
|
|
df98bb |
1 file changed, 1 deletion(-)
|
|
|
df98bb |
|
|
|
df98bb |
diff --git a/man/meson.build b/man/meson.build
|
|
|
df98bb |
index ec05d73bc6..a953d34098 100644
|
|
|
df98bb |
--- a/man/meson.build
|
|
|
df98bb |
+++ b/man/meson.build
|
|
|
df98bb |
@@ -68,7 +68,6 @@ foreach tuple : xsltproc.found() ? manpages : []
|
|
|
df98bb |
foreach htmlalias : htmlaliases
|
|
|
df98bb |
link = custom_target(
|
|
|
df98bb |
htmlalias,
|
|
|
df98bb |
- input : p2,
|
|
|
df98bb |
output : htmlalias,
|
|
|
df98bb |
command : ['ln', '-fs', html, '@OUTPUT@'])
|
|
|
df98bb |
if want_html
|