diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-02-21 19:08:14 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-02-28 01:39:02 -0500 |
commit | ed30adf75008c5205626b7f7dc9e90cdb1926b82 (patch) | |
tree | 39e6fdf7c6474d46c225728bbe5e30330f4f7a22 /sim/common | |
parent | f8069d55c1c9fac14d68d22c6f7681055c0fd6e0 (diff) | |
download | gdb-ed30adf75008c5205626b7f7dc9e90cdb1926b82.zip gdb-ed30adf75008c5205626b7f7dc9e90cdb1926b82.tar.gz gdb-ed30adf75008c5205626b7f7dc9e90cdb1926b82.tar.bz2 |
sim: delete unused SIM_EXTRA_LIBDEPS
This was last used 15 years ago, so clearly not important enough to
keep around. Punt it.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/Make-common.in | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 9ff2e7a..35c10a5 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2021-02-28 Mike Frysinger <vapier@gentoo.org> + + * Make-common.in (SIM_EXTRA_LIBDEPS): Delete. + (LIBDEPS): Delete $(SIM_EXTRA_LIBDEPS). + 2021-02-27 Mike Frysinger <vapier@gentoo.org> * Make-common.in (SIM_EXTRA_ALL): Delete. diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 84bd1be..3f16dc4 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -124,8 +124,6 @@ SIM_EXTRA_DEPS = SIM_EXTRA_CFLAGS = # List of extra libraries to link with. SIM_EXTRA_LIBS = -# List of extra program dependencies. -SIM_EXTRA_LIBDEPS = # List of main object files for `run'. SIM_RUN_OBJS = nrun.o # Dependency of `install' to install any extra files. @@ -244,8 +242,7 @@ OPCODES_LIB = ../../opcodes/libopcodes.a LIBINTL = @LIBINTL@ LIBINTL_DEP = @LIBINTL_DEP@ CONFIG_LIBS = @LIBS@ $(ZLIB) -LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) \ - $(SIM_EXTRA_LIBDEPS) +LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \ $(CONFIG_LIBS) $(SIM_EXTRA_LIBS) $(LIBDL) |