From 316ab9c9db13777e04f4d947780aadf08fadd400 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Tue, 24 Mar 2020 11:34:51 -0600 Subject: [PATCH] tt: fix link order for tt_type_comp and dbck These caused link errors on Gentoo, maybe other systems. Patch by Peter G. --- cde/lib/tt/bin/dbck/Makefile.am | 2 +- cde/lib/tt/bin/tt_type_comp/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cde/lib/tt/bin/dbck/Makefile.am b/cde/lib/tt/bin/dbck/Makefile.am index 30308e08..8f186d76 100644 --- a/cde/lib/tt/bin/dbck/Makefile.am +++ b/cde/lib/tt/bin/dbck/Makefile.am @@ -4,7 +4,7 @@ include ../../tooltalk.inc bin_PROGRAMS = ttdbck -ttdbck_LDADD = @LIBTT@ ../../slib/libstt.a ../../mini_isam/libisam.a \ +ttdbck_LDADD = ../../slib/libstt.a ../../mini_isam/libisam.a @LIBTT@ \ $(XTOOLLIB) ttdbck_CXXFLAGS = -I../../slib -I../../lib -I../../mini_isam \ diff --git a/cde/lib/tt/bin/tt_type_comp/Makefile.am b/cde/lib/tt/bin/tt_type_comp/Makefile.am index 1c9a73f4..ea1962ae 100644 --- a/cde/lib/tt/bin/tt_type_comp/Makefile.am +++ b/cde/lib/tt/bin/tt_type_comp/Makefile.am @@ -17,7 +17,7 @@ tt_type_comp_CXXFLAGS = -I../../lib -I../../slib \ tt_type_comp_SOURCES = mp_type_comp.C mp_types_table.C \ frozen.mp_types_lex.C frozen.mp_types_gram.C -tt_type_comp_LDADD = $(LIBTT) ../../slib/libstt.a $(XTOOLLIB) +tt_type_comp_LDADD = ../../slib/libstt.a $(LIBTT) $(XTOOLLIB) if SOLARIS tt_type_comp_LDADD += $(XTOOLLIB) -ldl -lintl -lsocket -lnsl -- 2.25.1