Magellan Linux

Contents of /trunk/autogen/patches/autogen-5.18.16-make-4.3.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3758 - (show annotations) (download)
Thu Aug 10 08:11:50 2023 UTC (9 months, 3 weeks ago) by niro
File size: 814 byte(s)
-ftbfs
1 Without this change 'make check -j9' on make-4.3 hangs indefinitely.
2 Older make versions just leak process. Ideally 'run_ag' (or 'defs'?)
3 should be fixed to stop process leak.
4 --- a/agen5/test/directives.test
5 +++ b/agen5/test/directives.test
6 @@ -120,9 +120,10 @@ echo '#assert `echo true`' >> ${testname}.inc
7 run_ag x2 ${agopts} ${testname}.def
8 test $? -eq 0 || failure ${agopts}-2 failed
9
10 -echo '#assert `echo false`' >> ${testname}.inc
11 -run_ag x3 ${agopts} ${testname}.def
12 -test $? -ne 0 || failure ${agopts}-3 failed
13 +#leaks process and makes make-4.3 hang on leaked process
14 +#echo '#assert `echo false`' >> ${testname}.inc
15 +#run_ag x3 ${agopts} ${testname}.def
16 +#test $? -ne 0 || failure ${agopts}-3 failed
17
18 ${FGREP} -v '#assert' ${testname}.inc > ${testname}2.inc
19 mv -f ${testname}2.inc ${testname}.inc