Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 1 | From 8fd80ead718ffc53d7182b9df6f49974113ff8fc Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Mon, 23 May 2022 11:23:58 -0700 |
| 4 | Subject: [PATCH] setup.py: Disable autodection of modules |
| 5 | |
| 6 | This helps to fix build with latest setuptools |
| 7 | |
| 8 | Upstream-Status: Pending |
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 10 | --- |
| 11 | setup.py | 1 + |
| 12 | 1 file changed, 1 insertion(+) |
| 13 | |
| 14 | diff --git a/setup.py b/setup.py |
| 15 | index 932bf01..fd5a092 100755 |
| 16 | --- a/setup.py |
| 17 | +++ b/setup.py |
| 18 | @@ -12,6 +12,7 @@ if __name__ == "__main__": |
| 19 | name='unattended-upgrades', |
| 20 | version='0.1', |
| 21 | scripts=['unattended-upgrade'], |
| 22 | + py_modules=[], |
| 23 | data_files=[ |
| 24 | ('../etc/logrotate.d/', |
| 25 | ["data/logrotate.d/unattended-upgrades"]), |
| 26 | -- |
| 27 | 2.36.1 |
| 28 | |