From 75f11dc5d66579a6277e3f2efd17e96ce77d98cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= Date: Mon, 14 Aug 2006 07:56:39 +0000 Subject: [PATCH] Fixed inodedb build with --as-needed to please people who want to compile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2006-08-14 Benoît Dejean * src/inodedb/Makefile.am: Fixed inodedb build with --as-needed to please people who want to compile and optimize broken, deprecated and never-used feature. Patch by Daniel Gryniewicz Closes #341041. --- ChangeLog | 10 ++++++++++ src/inodedb/Makefile.am | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index cf349a7d..0f29bcc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2006-08-14 Benoît Dejean + + * src/inodedb/Makefile.am: + + Fixed inodedb build with --as-needed to please people + who want to compile and optimize broken, deprecated and + never-used feature. + Patch by Daniel Gryniewicz + Closes #341041. + 2006-08-10 Benoît Dejean * configure.in: diff --git a/src/inodedb/Makefile.am b/src/inodedb/Makefile.am index 3e05c9ec..185dd18e 100644 --- a/src/inodedb/Makefile.am +++ b/src/inodedb/Makefile.am @@ -2,8 +2,8 @@ bin_PROGRAMS = mkinodedb2 file_by_inode2 INCLUDES = @INCLUDES@ -mkinodedb2_LDADD = $(top_builddir)/lib/libgtop-2.0.la \ - $(top_builddir)/sysdeps/common/libgtop_common-2.0.la \ +mkinodedb2_LDADD = $(top_builddir)/sysdeps/common/libgtop_common-2.0.la \ + $(top_builddir)/lib/libgtop-2.0.la \ $(top_builddir)/sysdeps/@sysdeps_dir@/libgtop_sysdeps-2.0.la file_by_inode2_LDADD = $(top_builddir)/lib/libgtop-2.0.la \