diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-04-01 02:34:00 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-04-02 00:51:40 -0400 |
commit | 1a8faa2aa652d8d6c6c3daa83b1dac35ee27e64e (patch) | |
tree | 49146766e85ecb14ee05d7b52776297640dc9294 /sim/h8300 | |
parent | 6f20d58b6f9f7e4a239567f6245a580932f37adb (diff) | |
download | gdb-1a8faa2aa652d8d6c6c3daa83b1dac35ee27e64e.zip gdb-1a8faa2aa652d8d6c6c3daa83b1dac35ee27e64e.tar.gz gdb-1a8faa2aa652d8d6c6c3daa83b1dac35ee27e64e.tar.bz2 |
sim: clean up SIM_EXTRA_OBJS references
This variable was deleted in previous commits and is not used anymore.
Prune any stray references to it.
Diffstat (limited to 'sim/h8300')
-rw-r--r-- | sim/h8300/ChangeLog | 4 | ||||
-rw-r--r-- | sim/h8300/Makefile.in | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index 037568b..641f72d 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,3 +1,7 @@ +2015-04-01 Mike Frysinger <vapier@gentoo.org> + + * Makefile.in (SIM_OBJS): Delete $(SIM_EXTRA_OBJS). + 2015-03-31 Mike Frysinger <vapier@gentoo.org> * config.in, configure: Regenerate. diff --git a/sim/h8300/Makefile.in b/sim/h8300/Makefile.in index 0333a56..8893f80 100644 --- a/sim/h8300/Makefile.in +++ b/sim/h8300/Makefile.in @@ -1,7 +1,7 @@ # Makefile template for Configure for the h8300 sim library. # Copyright (C) 1990-2015 Free Software Foundation, Inc. # Written by Cygnus Support. -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or @@ -21,8 +21,7 @@ SIM_OBJS = compile.o \ $(SIM_NEW_COMMON_OBJS) \ sim-cpu.o \ sim-engine.o \ - sim-load.o \ - $(SIM_EXTRA_OBJS) + sim-load.o ## COMMON_POST_CONFIG_FRAG |