diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-08 02:58:01 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-08 02:58:01 +0000 |
commit | b715d5b4aa76206e8d3d4cc77c320d845ba8c85a (patch) | |
tree | d571eda62116f09d780c9ec3fa4b3f5b8b24d153 /gdb/Makefile.in | |
parent | 0c5e9c7582d403bf5a68f4ffd4bbc0cc9dbc7284 (diff) | |
download | gdb-b715d5b4aa76206e8d3d4cc77c320d845ba8c85a.zip gdb-b715d5b4aa76206e8d3d4cc77c320d845ba8c85a.tar.gz gdb-b715d5b4aa76206e8d3d4cc77c320d845ba8c85a.tar.bz2 |
* Makefile.in: link with libiberty after libreadline, since
readline might want something in libiberty.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 7d14a7a..bfb733d 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -126,7 +126,7 @@ TERMCAP = -ltermcap # Libraries and corresponding dependencies for compiling gdb. # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs. # TERMCAP comes after readline, since readline depends on it. -CLIBS = ${BFD_LIB} ${LIBIBERTY} ${RL_LIB} ${TERMCAP} ${XM_CLIBS} ${TM_CLIBS} +CLIBS = ${BFD_LIB} ${RL_LIB} ${TERMCAP} ${LIBIBERTY} ${XM_CLIBS} ${TM_CLIBS} CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_LIB} ${LIBIBERTY} ${RL_LIB} ADD_FILES = ${REGEX} ${ALLOCA} ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES} |