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 | gcc-changelog: new error for quoted utf8 filenames (diff) | |
download | gcc-e4043c636cef8d18074ce6865ed3271283f52bb5.tar.gz gcc-e4043c636cef8d18074ce6865ed3271283f52bb5.tar.bz2 gcc-e4043c636cef8d18074ce6865ed3271283f52bb5.tar.xz |
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 87f9236c203..7dc67ad9e06 100644 --- a/c++tools/Makefile.in +++ b/c++tools/Makefile.in | |||
@@ -29,7 +29,7 @@ AUTOHEADER := @AUTOHEADER@ | |||
29 | CXX := @CXX@ | 29 | CXX := @CXX@ |
30 | CXXFLAGS := @CXXFLAGS@ | 30 | CXXFLAGS := @CXXFLAGS@ |
31 | CXXOPTS := $(CXXFLAGS) -fno-exceptions -fno-rtti | 31 | CXXOPTS := $(CXXFLAGS) -fno-exceptions -fno-rtti |
32 | EXEEXT := @EXEEXT@ | 32 | exeext := @EXEEXT@ |
33 | LIBIBERTY := ../libiberty/libiberty.a | 33 | LIBIBERTY := ../libiberty/libiberty.a |
34 | VERSION.O := ../gcc/version.o | 34 | VERSION.O := ../gcc/version.o |
35 | 35 | ||