From 6292c699248d3dfa6271ae0961e63436615653f2 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 18 Feb 2020 09:12:13 -0500 Subject: Rework dependency scanning: * Stop resolving dependencies during manifest creation * Resolve dependencies by path * Die on failure to resolve * Fixed an off-by-one error in manifest_read * Add CLI argument -M|--override-manifest to disable default manifest(s) * Clean up expandpath() a bit --- scripts/spmbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/spmbuild b/scripts/spmbuild index feb17eb..2ee11ea 100755 --- a/scripts/spmbuild +++ b/scripts/spmbuild @@ -163,7 +163,7 @@ function spm_build_cleanup() { } function spm_build_install() { - ${SPM} --verbose --manifest "${SPM_BUILD_STORE_PACKAGES}" --install $@ --root "${SPM_BUILD_RUNTIME}" + ${SPM} --override-manifests --manifest "${SPM_BUILD_STORE_PACKAGES}" --install $@ --root "${SPM_BUILD_RUNTIME}" } function spm_build_mkprefixbin() { -- cgit