diff options
author | 2021-12-21 22:41:41 -0800 | |
---|---|---|
committer | 2021-12-21 22:41:41 -0800 | |
commit | 14fe014fdfe94746462dce1dea68c48166b75e9b (patch) | |
tree | 263ce59eeaedacfd1779bc1166bf306ddadfe983 | |
parent | 8f16eeb82a9baa22deb7b44150156c6758536764 (diff) | |
download | bun-14fe014fdfe94746462dce1dea68c48166b75e9b.tar.gz bun-14fe014fdfe94746462dce1dea68c48166b75e9b.tar.zst bun-14fe014fdfe94746462dce1dea68c48166b75e9b.zip |
Update Makefilebun-v0.0.57
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -59,6 +59,8 @@ DEPS_DIR = $(shell pwd)/src/deps CPUS ?= $(shell nproc) USER ?= $(echo $USER) +BUN_RELEASE_DIR ?= $(shell pwd)/../bun-release + OPENSSL_VERSION = OpenSSL_1_1_1l LIBICONV_PATH ?= $(BREW_PREFIX_PATH)/opt/libiconv/lib/libiconv.a @@ -735,5 +737,5 @@ copy-install: cp src/cli/install.sh ../bun.sh/docs/install.html copy-to-bun-release-dir: - cp -r $(PACKAGE_DIR)/bun $BUN_RELEASE_DIR/bun - cp -r $(PACKAGE_DIR)/bun-profile $BUN_RELEASE_DIR/bun-profile
\ No newline at end of file + cp -r $(PACKAGE_DIR)/bun $(BUN_RELEASE_DIR)/bun + cp -r $(PACKAGE_DIR)/bun-profile $(BUN_RELEASE_DIR)/bun-profile
\ No newline at end of file |