diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-03-08 00:30:31 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-03-08 00:54:37 -0500 |
commit | 8c9b6e7689157423ae99f89f30791d70214ef87b (patch) | |
tree | 5eb7ba2616d03e5c169b19ef11328e8779a2dbd6 /sim/m32c/Makefile.in | |
parent | 2916e3e18fe7fb15f3153e71404987ea721da84f (diff) | |
download | gdb-8c9b6e7689157423ae99f89f30791d70214ef87b.zip gdb-8c9b6e7689157423ae99f89f30791d70214ef87b.tar.gz gdb-8c9b6e7689157423ae99f89f30791d70214ef87b.tar.bz2 |
sim: delete unused BUILD_LIBS setting
This hasn't been initialized anywhere for years. It used to be for
passing in the path to libiberty, but that stopped happening long ago.
Delete it to simplify the build logic.
Diffstat (limited to 'sim/m32c/Makefile.in')
-rw-r--r-- | sim/m32c/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/m32c/Makefile.in b/sim/m32c/Makefile.in index d623821..91f52a7 100644 --- a/sim/m32c/Makefile.in +++ b/sim/m32c/Makefile.in @@ -53,7 +53,7 @@ m32c.c : m32c.opc opc2c ./opc2c -l m32c.out $(srcdir)/m32c.opc > m32c.c opc2c : opc2c.o safe-fgets.o - $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $^ -o $@ $(BUILD_LIBS) + $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $^ -o $@ encodings: grep '/\* [01]' $(srcdir)/r8c.opc | sort |