From e4043c636cef8d18074ce6865ed3271283f52bb5 Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Mon, 21 Dec 2020 05:32:28 -0800 Subject: [PATCH] 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. --- 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 -- 2.30.2