From f952aa0b7304146e7661eb669dafc3523e81ec90 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 30 Oct 2008 13:42:07 +0000 Subject: [PATCH] Make sure that the Trilinos and Petsc libs come after our own. Otherwise, linking with static libs fails. git-svn-id: https://svn.dealii.org/trunk@17415 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 1f95b4fe17..f3b2000480 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -51,7 +51,7 @@ endif %/exe : %/obj.g.$(OBJEXT) @echo =====linking======= $@ @echo Linking > $*/status - @$(CXX) $(LDFLAGS) -o $@ $^ $(LIBS) + @$(CXX) -o $@ $^ $(LDFLAGS) $(LIBS) ############################################################ -- 2.39.5