aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFelix Janda <felix.janda@posteo.de>2016-11-01 12:38:37 +1100
committerDave Chinner <david@fromorbit.com>2016-11-01 12:38:37 +1100
commitec0a99fa79d62a6e5316213b7ad6ef35de2e8643 (patch)
tree42ce45d423591f8c6e6d62bec6fe1e06222d54af /Makefile
parentf8edba5a51671c585cd09499a4e691872715d932 (diff)
downloadxfsprogs-dev-ec0a99fa79d62a6e5316213b7ad6ef35de2e8643.tar.gz
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 <felix.janda@posteo.de> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7bdc670a25..84dc62ceb2 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