From: Felix Janda Date: Tue, 1 Nov 2016 01:38:37 +0000 (+1100) Subject: Makefile: disable fsr for Mac OS X X-Git-Tag: v4.9.0-rc1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec0a99fa79d62a6e5316213b7ad6ef35de2e8643;p=thirdparty%2Fxfsprogs-dev.git Makefile: disable fsr for Mac OS X Since its kernel does not support XFS anyway this utility is not useful, and with its removal the portability framework can be simplified. Signed-off-by: Felix Janda Reviewed-by: Christoph Hellwig Signed-off-by: Dave Chinner --- diff --git a/Makefile b/Makefile index 7bdc670a2..84dc62ceb 100644 --- a/Makefile +++ b/Makefile @@ -45,9 +45,13 @@ HDR_SUBDIRS = include libxfs DLIB_SUBDIRS = libxlog libxcmd libhandle LIB_SUBDIRS = libxfs $(DLIB_SUBDIRS) -TOOL_SUBDIRS = copy db estimate fsck fsr growfs io logprint mkfs quota \ +TOOL_SUBDIRS = copy db estimate fsck growfs io logprint mkfs quota \ mdrestore repair rtcp m4 man doc debian +ifneq ("$(PKG_PLATFORM)","darwin") +TOOL_SUBDIRS += fsr +endif + ifneq ("$(XGETTEXT)","") TOOL_SUBDIRS += po endif