Re: [PATCH] add rm conftest.o in lib/autoconf/lang.m4

2022-06-29 Thread Jeff Shimoda [Marbles504]
No problem, thanks! On Wed, Jun 29, 2022 at 5:35 PM Paul Eggert wrote: > > On 6/29/22 16:22, Jeff Shimoda [Marbles504] wrote: > > Just following up with this. Any thoughts? If you'd like I can open > > up a bug in Savanna for this. > > Should be no need, as I committed something along those lin

Re: [PATCH] add rm conftest.o in lib/autoconf/lang.m4

2022-06-29 Thread Paul Eggert
On 6/29/22 16:22, Jeff Shimoda [Marbles504] wrote: Just following up with this. Any thoughts? If you'd like I can open up a bug in Savanna for this. Should be no need, as I committed something along those lines here: https://git.savannah.gnu.org/cgit/autoconf.git/commit/?id=76beb33bfe435a443

Re: [PATCH] add rm conftest.o in lib/autoconf/lang.m4

2022-06-29 Thread Jeff Shimoda [Marbles504]
> Hi Paul, I assumed we don't need to remove conftest.obj because it's > not produced by most compilers when the "-o foo" option is used, > although I suppose it can't hurt to remove it as well. It also seems > we can't use $ac_objext here because this macro AC_COMPILER_EXEEXT > must be run before

Re: [PATCH] add rm conftest.o in lib/autoconf/lang.m4

2022-06-22 Thread Jeff Shimoda [Marbles504]
On Wed, Jun 22, 2022 at 1:11 AM Paul Eggert wrote: > Don't you also need to remove conftest.obj? Or is it conftest.$ac_objext > and require _AC_COMPILER_OBJEXT? Or the latter may be a bridge too far. Hi Paul, I assumed we don't need to remove conftest.obj because it's not produced by most compile

Re: [PATCH] add rm conftest.o in lib/autoconf/lang.m4

2022-06-21 Thread Paul Eggert
On 6/21/22 16:24, Marbles504 wrote: +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out conftest.o Don't you also need to remove conftest.obj? Or is it conftest.$ac_objext and require _AC_COMPILER_OBJEXT? Or the latter may be a bridge too far.

[PATCH] add rm conftest.o in lib/autoconf/lang.m4

2022-06-21 Thread Marbles504
Hello, I'm compiling and testing autoconf on IBM z/OS Unix. This patch removes conftest.o (which is left by the xlc compiler) during 'make check'. It affects test 318 AC_C_BACKSLASH_A, among others. Is this a patch that could be accepted? -Jeff Shimoda diff --git a/lib/autoconf/lang.m4 b/lib/au