From 4048aed12b81c5a0154b9af438edc99ec7d2b6a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Mon, 3 Jan 2022 11:38:55 +0400 Subject: [PATCH] setup.py: fix out of tree build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: commit 1cc41b1c9 ("pylibfdt: Add packaging metadata") Signed-off-by: Marc-André Lureau Message-Id: <20220103073855.1468799-3-marcandre.lureau@redhat.com> Signed-off-by: David Gibson --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 00444e6..029aa61 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ import sys srcdir = os.path.dirname(__file__) -with open("README", "r") as fh: +with open(os.path.join(srcdir, "README"), "r") as fh: long_description = fh.read() def get_top_builddir():