Allow the paths file to be created outside of the build system env
This commit is contained in:
parent
d548b20ecd
commit
b1d380e07e
|
@ -59,7 +59,7 @@ warn-jobs:
|
|||
|
||||
nimbus-build-system-paths:
|
||||
echo "Creating nimbus-build-system.paths"; \
|
||||
"$(CURDIR)/$(BUILD_SYSTEM_DIR)/scripts/create_nbs_paths.sh"
|
||||
TOP_LEVEL_DIR="$(CURDIR)" "$(CURDIR)/$(BUILD_SYSTEM_DIR)/scripts/create_nbs_paths.sh"
|
||||
|
||||
deps-common: | sanity-checks warn-update warn-jobs $(NIMBLE_DIR)
|
||||
# - don't build our Nim target if it's not going to be used
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
cd "${ABS_PATH}/../../.."
|
||||
cd "$TOP_LEVEL_DIR"
|
||||
|
||||
echo "--noNimblePath" > nimbus-build-system.paths
|
||||
for file in $(ls -d $PWD/vendor/*)
|
||||
|
|
Loading…
Reference in New Issue