From 7eecd318f9231075c34cafa15f5a35fe9ca70f1a Mon Sep 17 00:00:00 2001 From: maartenkeijzer Date: Tue, 27 Feb 2001 11:44:28 +0000 Subject: [PATCH] swapped order of libeo and libeoutils, gcc 2.91 did not like it --- eo/test/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eo/test/Makefile.am b/eo/test/Makefile.am index 3128dc8e..5c1c29f1 100644 --- a/eo/test/Makefile.am +++ b/eo/test/Makefile.am @@ -4,12 +4,12 @@ ## ############################################################################### -DEPS = $(top_builddir)/src/libeo.a $(top_builddir)/src/utils/libeoutils.a +DEPS = $(top_builddir)/src/utils/libeoutils.a $(top_builddir)/src/libeo.a ############################################################################### INCLUDES = -I$(top_builddir)/src -LDADDS = $(top_builddir)/src/libeo.a $(top_builddir)/src/utils/libeoutils.a +LDADDS = $(top_builddir)/src/utils/libeoutils.a $(top_builddir)/src/libeo.a CXXFLAGS = -g ###############################################################################