blob: ff212b85eeef1c680d6421b5fb039cdf4e64742f [file] [log] [blame]
Andrew Geissler09036742021-06-25 14:25:14 -05001From 82be2b7b9758a2f62ee11931da674cd541076041 Mon Sep 17 00:00:00 2001
2From: Tim Orling <ticotimo@gmail.com>
3Date: Sat, 22 May 2021 11:20:46 -0700
4Subject: [PATCH] Fix man page installation
5
6Fixes:
7 error: can't copy 'build/doc/man/scons.1': doesn't exist or not a regular file
8
9Upstream-Status: Inappropriate [oe specific]
10
11Signed-off-by: Tim Orling <ticotimo@gmail.com>
12---
13 MANIFEST.in | 2 +-
14 setup.cfg | 6 +++---
15 2 files changed, 4 insertions(+), 4 deletions(-)
16
17diff --git a/MANIFEST.in b/MANIFEST.in
18index 04ec000..937f6f3 100644
19--- a/MANIFEST.in
20+++ b/MANIFEST.in
21@@ -4,7 +4,7 @@ recursive-include SCons/Tool/docbook *
22 include LICENSE
23
24 include scons.1 sconsign.1 scons-time.1
25-recursive-include build/doc/man *.1
26+#recursive-include build/doc/man *.1
27
28
29
30diff --git a/setup.cfg b/setup.cfg
31index 37e5204..677c00a 100644
32--- a/setup.cfg
33+++ b/setup.cfg
34@@ -56,9 +56,9 @@ console_scripts =
35 scons.tool.docbook = *.*
36
37 [options.data_files]
38-. = build/doc/man/scons.1
39- build/doc/man/scons-time.1
40- build/doc/man/sconsign.1
41+. = scons.1
42+ scons-time.1
43+ sconsign.1
44
45 [sdist]
46 dist-dir = build/dist