From 81d7bcec953ab7e1a918fe1d90d1a754043a3840 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Fri, 6 Sep 2013 03:45:23 -0700 Subject: [PATCH] Bypass the autotools build environment on Mac OS X. --- macosx.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/macosx.sh b/macosx.sh index 0b0807a..9b98867 100755 --- a/macosx.sh +++ b/macosx.sh @@ -6,7 +6,15 @@ version=6.2 readline=readline-${version} if [[ ! -d "${readline}" ]]; then - ./readline.sh "${version}" -fi + ./readline.sh "${version}"; fi + +if ! which aclocal; then + touch aclocal.m4; fi +if ! which autoconf; then + touch configure.ac; fi +if ! which automake; then + touch Makefile.in; fi +if ! which autoheader; then + touch config.h.in; fi exec "${0%%/*}/configure" CPPFLAGS="-I${readline}" LDFLAGS="-L${readline}" "$@" -- 2.47.2