From: Theodore Ts'o Date: Sat, 15 Nov 2008 17:12:57 +0000 (-0500) Subject: e2fsck: Fix build of e2fsck.profiled if profiling is enabled X-Git-Tag: v1.41.4~43 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=992a2f7f68f879121c28ebc50c3e9a1615db2bfa;p=tools%2Fe2fsprogs.git e2fsck: Fix build of e2fsck.profiled if profiling is enabled It's been a while since I've done a build using "configure --enable-profile", and some bitrot had set into the Makefiles... Signed-off-by: "Theodore Ts'o" --- diff --git a/MCONFIG.in b/MCONFIG.in index 64cbf0a..d72ca81 100644 --- a/MCONFIG.in +++ b/MCONFIG.in @@ -92,7 +92,7 @@ DEPSTATIC_LIBUUID = $(LIB)/libuuid@STATIC_LIB_EXT@ DEPSTATIC_LIBBLKID = $(LIB)/libblkid@STATIC_LIB_EXT@ PROFILED_LIBSS = $(LIB)/libss@PROFILED_LIB_EXT@ @DLOPEN_LIB@ -PROFILED_LIBCOM_ERR = $(LIB)/libcom_err@PROFILED_LIB_EXT@ +PROFILED_LIBCOM_ERR = $(LIB)/libcom_err@PROFILED_LIB_EXT@ @SEM_INIT_LIB@ PROFILED_LIBE2P = $(LIB)/libe2p@PROFILED_LIB_EXT@ PROFILED_LIBEXT2FS = $(LIB)/libext2fs@PROFILED_LIB_EXT@ PROFILED_LIBUUID = $(LIB)/libuuid@PROFILED_LIB_EXT@ @SOCKET_LIB@ diff --git a/e2fsck/Makefile.in b/e2fsck/Makefile.in index 77300d1..9d974bb 100644 --- a/e2fsck/Makefile.in +++ b/e2fsck/Makefile.in @@ -73,7 +73,7 @@ PROFILED_OBJS= profiled/dict.o profiled/unix.o profiled/e2fsck.o \ profiled/message.o profiled/problem.o \ profiled/recovery.o profiled/region.o profiled/revoke.o \ profiled/ea_refcount.o profiled/rehash.o profiled/profile.o \ - profiled/prof_err.o + profiled/crc32.o profiled/prof_err.o SRCS= $(srcdir)/e2fsck.c \ $(srcdir)/crc32.c \