diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-11-03 16:53:21 +0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-11-04 07:42:31 +0700 |
commit | 0dea8b8d9fb48df577fb6f28846e498d3c0bb9bf (patch) | |
tree | 7273d5f5e0826dc514f5814ef56fa3834449f39a /sim/erc32 | |
parent | 051081585e40a3145028cda8e2a16c010a33ebe9 (diff) | |
download | gdb-0dea8b8d9fb48df577fb6f28846e498d3c0bb9bf.zip gdb-0dea8b8d9fb48df577fb6f28846e498d3c0bb9bf.tar.gz gdb-0dea8b8d9fb48df577fb6f28846e498d3c0bb9bf.tar.bz2 |
sim: drop -lm from SIM_EXTRA_LIBS
We have configure tests for this in the top-level configure script
to link this when necessary, so we don't need to explicitly list it
for specific ports.
Diffstat (limited to 'sim/erc32')
-rw-r--r-- | sim/erc32/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index 013b604..7dd5102 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -23,7 +23,7 @@ READLINE_SRC = $(srcroot)/readline/readline SIM_OBJS = exec.o erc32.o func.o help.o float.o interf.o SIM_RUN_OBJS = sis.o SIM_EXTRA_CFLAGS = $(READLINE_CFLAGS) -SIM_EXTRA_LIBS = $(READLINE_LIB) $(TERMCAP_LIB) -lm +SIM_EXTRA_LIBS = $(READLINE_LIB) $(TERMCAP_LIB) SIM_EXTRA_INSTALL = install-sis SIM_EXTRA_CLEAN = clean-sis |