Andrew Geissler | 5f35090 | 2021-07-23 13:09:54 -0400 | [diff] [blame^] | 1 | libainstall installs python-config.py but the .pyc cache files are generated |
| 2 | by the libinstall target. This means some builds may not generate the pyc files |
| 3 | for python-config.py depending on the order things happen in. This means builds |
| 4 | are not always reproducible. |
| 5 | |
| 6 | Add a dependency to avoid the race. |
| 7 | |
| 8 | Upstream-Status: Pending |
| 9 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> |
| 10 | |
| 11 | Index: Python-3.9.6/Makefile.pre.in |
| 12 | =================================================================== |
| 13 | --- Python-3.9.6.orig/Makefile.pre.in |
| 14 | +++ Python-3.9.6/Makefile.pre.in |
| 15 | @@ -1486,7 +1486,7 @@ LIBSUBDIRS= tkinter tkinter/test tkinter |
| 16 | venv venv/scripts venv/scripts/common venv/scripts/posix \ |
| 17 | curses pydoc_data \ |
| 18 | zoneinfo |
| 19 | -libinstall: build_all $(srcdir)/Modules/xxmodule.c |
| 20 | +libinstall: build_all $(srcdir)/Modules/xxmodule.c libainstall |
| 21 | @for i in $(SCRIPTDIR) $(LIBDEST); \ |
| 22 | do \ |
| 23 | if test ! -d $(DESTDIR)$$i; then \ |