XML catalogue of packages which are available for installation, using the mingw-get installer.
Revision | 5fe398f004555981de9c66169b3ad0433c5cd640 (tree) |
---|---|
Time | 2020-06-18 03:04:52 |
Author | Keith Marshall <keith@user...> |
Commiter | Keith Marshall |
Improve support for out-of-tree catalogue generation.
@@ -1,3 +1,14 @@ | ||
1 | +2020-06-17 Keith Marshall <keith@users.osdn.me> | |
2 | + | |
3 | + Improve support for out-of-tree catalogue generation. | |
4 | + | |
5 | + * Makefile.in: When running the testsuite, use ${abs_top_srcdir} | |
6 | + references, rather than ${top_srcdir}; this is required, to ensure | |
7 | + that testsuite path names are correctly resolved, when the build | |
8 | + directory is not a subdirectory of ${top_srcdir}, (as is likely | |
9 | + to be the case, when generating a catalogue snapshot, which is | |
10 | + to be distributed with the mingw-get setup package). | |
11 | + | |
1 | 12 | 2020-06-03 Keith Marshall <keith@users.osdn.me> |
2 | 13 | |
3 | 14 | Publish MinGW.org WSL-5.3.3 package set. |
@@ -41,6 +41,7 @@ FORCE: | ||
41 | 41 | # when any of their respective sources are modified. |
42 | 42 | # |
43 | 43 | top_srcdir = @top_srcdir@ |
44 | +abs_top_srcdir = @abs_top_srcdir@ | |
44 | 45 | VPATH = ${top_srcdir} |
45 | 46 | |
46 | 47 | configure: configure.ac makeopts.m4 |
@@ -63,16 +64,15 @@ all-distfiles: all | ||
63 | 64 | # the test suite to validate all source documents; the following rules |
64 | 65 | # provide the interface which is needed to run the test suite. |
65 | 66 | # |
66 | -srcdir = @srcdir@ | |
67 | 67 | check: tests/Makefile |
68 | 68 | cd tests; $(MAKE_RECURSIVE) $@ |
69 | 69 | |
70 | -${srcdir}/tests/configure: ${srcdir}/tests/configure.ac VERSION.m4 | |
71 | - cd ${srcdir}/tests; autoconf | |
70 | +${srcdir}/tests/configure: ${abs_top_srcdir}/tests/configure.ac VERSION.m4 | |
71 | + cd ${abs_top_srcdir}/tests; autoconf | |
72 | 72 | |
73 | -tests/Makefile: ${srcdir}/tests/configure | |
73 | +tests/Makefile: ${abs_top_srcdir}/tests/configure | |
74 | 74 | test -d tests || mkdir tests |
75 | - cd tests; ../${srcdir}/tests/configure | |
75 | + cd tests; ${abs_top_srcdir}/tests/configure | |
76 | 76 | |
77 | 77 | # To support optimised "mingw-get update", the package lists must be |
78 | 78 | # dynamically updated, to correctly identify the latest issue of each |