aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-10-30 18:16:15 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-10-30 18:16:15 -0700
commit07bb25f7b17e08b28a544400f3ad297affe79bcc (patch)
treed3aa0185c3c75f3ee25ddc1ad751af985fa862ab
parentedd022337736cce25da922499ee9cb708ff8b363 (diff)
downloadbun-07bb25f7b17e08b28a544400f3ad297affe79bcc.tar.gz
bun-07bb25f7b17e08b28a544400f3ad297affe79bcc.tar.zst
bun-07bb25f7b17e08b28a544400f3ad297affe79bcc.zip
Update Makefile
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e0c96fae9..64356dcfe 100644
--- a/Makefile
+++ b/Makefile
@@ -349,6 +349,7 @@ require:
@npm --version >/dev/null 2>&1 || (echo -e "ERROR: npm is required."; exit 1)
@which aclocal > /dev/null || (echo -e "ERROR: automake is required. Install on mac with:\n\n brew install automake"; exit 1)
@which glibtoolize > /dev/null || (echo -e "ERROR: libtool is required. Install on mac with:\n\n brew install libtool"; exit 1)
+ @which ninja > /dev/null || (echo -e "ERROR: Ninja is required. Install on mac with:\n\n brew install ninja"; exit 1)
@stat $(LIBICONV_PATH) >/dev/null 2>&1 || (echo -e "ERROR: libiconv is required. Please run:\n\n brew install libiconv"; exit 1)
@stat $(LIBCRYPTO_STATIC_LIB) >/dev/null 2>&1 || (echo -e "ERROR: OpenSSL 1.1 is required. Please run:\n\n brew install openssl@1.1"; exit 1)
@echo "You have the dependencies installed! Woo"