From: Michael A Cassaniti Date: Wed, 27 Jul 2022 22:56:57 +0000 (+1000) Subject: Include any files ending in '.install' in package data X-Git-Tag: v14~104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67ea5109ddcdb19d77de882960d5eb791c1368ae;p=thirdparty%2Fmkosi.git Include any files ending in '.install' in package data This makes sure the new `dpkg-reconfigure-dracut.install` file under resources gets included as package data. --- diff --git a/setup.py b/setup.py index dc2d386f3..8cbbfdb7b 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ setup( license="LGPLv2+", python_requires=">=3.7", packages = find_packages(".", exclude=["tests"]), - package_data = {"": ["*.sh", "*.hook", "*.conf"]}, + package_data = {"": ["*.sh", "*.hook", "*.conf", "*.install"]}, include_package_data = True, scripts = ["bin/mkosi"], cmdclass = { "man": BuildManpage },