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 \