diff options
author | 2021-10-30 18:16:15 -0700 | |
---|---|---|
committer | 2021-10-30 18:16:15 -0700 | |
commit | 07bb25f7b17e08b28a544400f3ad297affe79bcc (patch) | |
tree | d3aa0185c3c75f3ee25ddc1ad751af985fa862ab | |
parent | edd022337736cce25da922499ee9cb708ff8b363 (diff) | |
download | bun-07bb25f7b17e08b28a544400f3ad297affe79bcc.tar.gz bun-07bb25f7b17e08b28a544400f3ad297affe79bcc.tar.zst bun-07bb25f7b17e08b28a544400f3ad297affe79bcc.zip |
Update Makefile
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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" |