From: Nathan Sidwell Date: Mon, 21 Dec 2020 13:32:28 +0000 (-0800) Subject: c++tools: Fix exe suffix [PR 98409] X-Git-Tag: upstream/12.2.0~10670 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e4043c636cef8d18074ce6865ed3271283f52bb5;p=platform%2Fupstream%2Fgcc.git 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 --git a/c++tools/Makefile.in b/c++tools/Makefile.in index 87f9236..7dc67ad 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