patman: fix installation of README.rst data file
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>
Sat, 17 Dec 2022 01:45:28 +0000 (20:45 -0500)
committerSimon Glass <sjg@chromium.org>
Fri, 6 Jan 2023 02:21:56 +0000 (19:21 -0700)
This fixes a regression introduced in commit 74df491051d6 ("buildman:
Convert documentation to rST").

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@savoirfairelinux.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
tools/patman/setup.py

index 5643bf1..2ff791d 100644 (file)
@@ -7,6 +7,6 @@ setup(name='patman',
       scripts=['patman'],
       packages=['patman'],
       package_dir={'patman': ''},
-      package_data={'patman': ['README']},
+      package_data={'patman': ['README.rst']},
       classifiers=['Environment :: Console',
                    'Topic :: Software Development'])