From 4c68f4e3868eea83021e14c262329ea3b1c7dc6c Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 8 Jan 2024 20:15:50 -0500 Subject: [PATCH] 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. --- sim/configure | 3 +-- sim/mips/acinclude.m4 | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/sim/configure b/sim/configure index 6d0cc769283..88dc76f27c2 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 diff --git a/sim/mips/acinclude.m4 b/sim/mips/acinclude.m4 index 58b55a2782b..ebb0eece888 100644 --- a/sim/mips/acinclude.m4 +++ b/sim/mips/acinclude.m4 @@ -319,8 +319,6 @@ __EOF__ } __EOF__ ], [dnl - dnl For clean-extra target. - SIM_MIPS_MULTI_SRC=mips/doesnt-exist.c SIM_MIPS_IGEN_ITABLE_FLAGS='$(SIM_MIPS_SINGLE_FLAGS)' AS_VAR_IF([SIM_MIPS_GEN], ["M16"], [AS_VAR_APPEND([SIM_MIPS_IGEN_ITABLE_FLAGS], [' $(SIM_MIPS_M16_FLAGS)'])]) ])