diff options
author | Nathan Sidwell <nathan@acm.org> | 2020-12-21 05:32:28 -0800 |
---|---|---|
committer | Nathan Sidwell <nathan@acm.org> | 2020-12-21 05:41:42 -0800 |
commit | e4043c636cef8d18074ce6865ed3271283f52bb5 (patch) | |
tree | ebaf908d0d483b0e1e3b925079f7172a40f6d21b /c++tools | |
parent | 1b021bbd85a79c9d16c1359cbc23b608685dfd9f (diff) | |
download | gcc-e4043c636cef8d18074ce6865ed3271283f52bb5.zip gcc-e4043c636cef8d18074ce6865ed3271283f52bb5.tar.gz gcc-e4043c636cef8d18074ce6865ed3271283f52bb5.tar.bz2 |
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.
Diffstat (limited to 'c++tools')
-rw-r--r-- | c++tools/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |