From 77b257585db8132c44915ed13fe934173d12ca64 Mon Sep 17 00:00:00 2001 From: Philip Chimento Date: Sat, 12 Nov 2016 12:48:44 -0800 Subject: [PATCH] build-sys: Don't hardcode glibtoolize Even on Darwin, the user should still be allowed to override the LIBTOOLIZE variable with their own path. The "libtoolize" program isn't always renamed to "glibtoolize" in every configuration. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 187abaa..e0e6a3f 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -17,7 +17,7 @@ case $(uname) in *Darwin*) - LIBTOOLIZE="glibtoolize" + test "x$LIBTOOLIZE" = "x" && LIBTOOLIZE=glibtoolize ;; esac test "x$LIBTOOLIZE" = "x" && LIBTOOLIZE=libtoolize -- 2.9.3 (Apple Git-75)