public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-6284] c++tools: Fix exe suffix [PR 98409]
@ 2020-12-21 13:42 Nathan Sidwell
  0 siblings, 0 replies; only message in thread
From: Nathan Sidwell @ 2020-12-21 13:42 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:e4043c636cef8d18074ce6865ed3271283f52bb5

commit r11-6284-ge4043c636cef8d18074ce6865ed3271283f52bb5
Author: Nathan Sidwell <nathan@acm.org>
Date:   Mon Dec 21 05:32:28 2020 -0800

    c++tools: Fix exe suffix [PR 98409]
    
    I had a thinko about variable case, and, coupled with Make's behaviour
    of just consing up variables out of nothing, and linux not having an
    executable extension, didn't notice.
    
            PR other/98409
            c++tools/
            * Makefile.in: Fix exeext variable case.

Diff:
---
 c++tools/Makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/c++tools/Makefile.in b/c++tools/Makefile.in
index 87f9236c203..7dc67ad9e06 100644
--- a/c++tools/Makefile.in
+++ b/c++tools/Makefile.in
@@ -29,7 +29,7 @@ AUTOHEADER := @AUTOHEADER@
 CXX := @CXX@
 CXXFLAGS := @CXXFLAGS@
 CXXOPTS := $(CXXFLAGS) -fno-exceptions -fno-rtti
-EXEEXT := @EXEEXT@
+exeext := @EXEEXT@
 LIBIBERTY := ../libiberty/libiberty.a
 VERSION.O := ../gcc/version.o


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-12-21 13:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-21 13:42 [gcc r11-6284] c++tools: Fix exe suffix [PR 98409] Nathan Sidwell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).