aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Chinner <dchinner@redhat.com>2023-01-20 10:39:06 +1100
committerCarlos Maiolino <cem@kernel.org>2023-01-20 15:59:22 +0100
commitd8eab7600f470fbd09013eb90cbc7c5e271da4e5 (patch)
tree746c9a7e0bd4893549c7b92c1ca5d0290783ee7d
parent0f1291c3bb8bfe4ad5dd67ec7b47f9420d9b138d (diff)
downloadxfsprogs-dev-d8eab7600f470fbd09013eb90cbc7c5e271da4e5.tar.gz
progs: just use libtoolize
We no longer support xfsprogs on random platforms other than Linux, so drop the complexity in detecting the libtoolize binary on MacOS from the main makefile. Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com> Signed-off-by: Carlos Maiolino <cem@kernel.org>
-rw-r--r--Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index c8455a9e66..c12df98dbe 100644
--- a/Makefile
+++ b/Makefile
@@ -73,14 +73,6 @@ ifneq ("$(XGETTEXT)","")
TOOL_SUBDIRS += po
endif
-# If we are on OS X, use glibtoolize from MacPorts, as OS X doesn't have
-# libtoolize binary itself.
-LIBTOOLIZE_TEST=$(shell libtoolize --version >/dev/null 2>&1 && echo found)
-LIBTOOLIZE_BIN=libtoolize
-ifneq ("$(LIBTOOLIZE_TEST)","found")
-LIBTOOLIZE_BIN=glibtoolize
-endif
-
# include is listed last so it is processed last in clean rules.
SUBDIRS = $(LIBFROG_SUBDIR) $(LIB_SUBDIRS) $(TOOL_SUBDIRS) include
@@ -116,7 +108,7 @@ clean: # if configure hasn't run, nothing to clean
endif
configure: configure.ac
- $(LIBTOOLIZE_BIN) -c -i -f
+ libtoolize -c -i -f
cp include/install-sh .
aclocal -I m4
autoconf