From: Carlos Maiolino <cem@xxxxxxxxxx> The new xfs_io fs properties subcommand, requires fsprops to be build, while libfrog conditionally build it according to the existence of libattr. This causes builds to fail if the libattr headers are not available, without a clear output. Now that xfs_io unconditionally requires libfrog/fsprops.c to be built, remove the condition from libfrog's Makefile. Fixes: d194cb818305 ("xfs_io: edit filesystem properties") Signed-off-by: Carlos Maiolino <cmaiolino@xxxxxxxxxx> --- libfrog/Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/libfrog/Makefile b/libfrog/Makefile index acddc894e..53de7c174 100644 --- a/libfrog/Makefile +++ b/libfrog/Makefile @@ -21,6 +21,7 @@ crc32.c \ file_exchange.c \ fsgeom.c \ fsproperties.c \ +fsprops.c \ getparents.c \ histogram.c \ list_sort.c \ @@ -49,6 +50,7 @@ div64.h \ file_exchange.h \ fsgeom.h \ fsproperties.h \ +fsprops.h \ getparents.h \ histogram.h \ logging.h \ @@ -61,12 +63,6 @@ scrub.h \ workqueue.h LSRCFILES += gen_crc32table.c - -ifeq ($(HAVE_LIBATTR),yes) -CFILES+=fsprops.c -HFILES+=fsprops.h -endif - LDIRT = gen_crc32table crc32table.h default: ltdepend $(LTLIBRARY) -- 2.46.0