From e35621c4476b3ef563ed5e0c756d77c2b2c6c977 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Tue, 25 Apr 2023 18:02:46 +0200 Subject: [PATCH] bindings: python: add MANIFEST.in to EXTRA_DIST The manifest is not being bundled with the distribution tarball. Add it to EXTRA_DIST. Signed-off-by: Bartosz Golaszewski --- bindings/python/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am index d04ec6d..079ceb1 100644 --- a/bindings/python/Makefile.am +++ b/bindings/python/Makefile.am @@ -1,7 +1,9 @@ # SPDX-License-Identifier: GPL-2.0-or-later # SPDX-FileCopyrightText: 2022 Bartosz Golaszewski -EXTRA_DIST = setup.py +EXTRA_DIST = \ + MANIFEST.in \ + setup.py if WITH_TESTS -- 2.30.2