diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2017-10-30 23:19:21 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2017-10-30 23:19:21 +0000 |
commit | 5bc86b599054f494ec0a45e49b82749320eaa9c4 (patch) | |
tree | 3550bde23863eccb16f0bc1d6c09e4fb872be87c /gcc/gcc.c | |
parent | 77efd154f33154e819186de79687ea55552139f4 (diff) | |
download | gcc-5bc86b599054f494ec0a45e49b82749320eaa9c4.zip gcc-5bc86b599054f494ec0a45e49b82749320eaa9c4.tar.gz gcc-5bc86b599054f494ec0a45e49b82749320eaa9c4.tar.bz2 |
* gcc.c (HAVE_TARGET_EXECUTABLE_SUFFIX): Remove old kludge.
From-SVN: r254246
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -170,9 +170,10 @@ env_manager::restore () /* By default there is no special suffix for target executables. */ -/* FIXME: when autoconf is fixed, remove the host check - dj */ -#if defined(TARGET_EXECUTABLE_SUFFIX) && defined(HOST_EXECUTABLE_SUFFIX) +#ifdef TARGET_EXECUTABLE_SUFFIX #define HAVE_TARGET_EXECUTABLE_SUFFIX +#else +#define TARGET_EXECUTABLE_SUFFIX "" #endif /* By default there is no special suffix for host executables. */ |