diff options
author | Mike Frysinger <vapier@gentoo.org> | 2024-01-08 20:15:50 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2024-01-08 20:20:59 -0500 |
commit | 4c68f4e3868eea83021e14c262329ea3b1c7dc6c (patch) | |
tree | 7e1246400b6284458f4fbbde6d71d0ffcde0180f /sim/configure | |
parent | 92bdeb2888729eec6e699ef1cf5c3fc4c2db886e (diff) | |
download | gdb-4c68f4e3868eea83021e14c262329ea3b1c7dc6c.zip gdb-4c68f4e3868eea83021e14c262329ea3b1c7dc6c.tar.gz gdb-4c68f4e3868eea83021e14c262329ea3b1c7dc6c.tar.bz2 |
sim: mips: drop old clean workaround
This logic dates back to the original import, and seems to be for
handling systems where `rm -f` (i.e. no files) would error out.
None of that is relevant for us with current automake, so drop it.
Diffstat (limited to 'sim/configure')
-rwxr-xr-x | sim/configure | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sim/configure b/sim/configure index 6d0cc76..88dc76f 100755 --- a/sim/configure +++ b/sim/configure @@ -16661,8 +16661,7 @@ fi __EOF__ else - SIM_MIPS_MULTI_SRC=mips/doesnt-exist.c - SIM_MIPS_IGEN_ITABLE_FLAGS='$(SIM_MIPS_SINGLE_FLAGS)' + SIM_MIPS_IGEN_ITABLE_FLAGS='$(SIM_MIPS_SINGLE_FLAGS)' if test "x$SIM_MIPS_GEN" = x"M16"; then : as_fn_append SIM_MIPS_IGEN_ITABLE_FLAGS ' $(SIM_MIPS_M16_FLAGS)' fi |