Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makefile_dependencies: fix verify-dependency-bounds target #3541

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile_dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test-set-lower-bounds:
echo "Testing that SET_LOWER_BOUNDS environment variable is set to a valid path"
test -e "${SET_LOWER_BOUNDS}"

verify-dependency-bounds: test-set-lower-bounds vdb-build vdb-min vdb-tests vdb-stratis-dumpmetadata
verify-dependency-bounds: test-set-lower-bounds vdb-build vdb-min vdb-tests vdb-stratisd-tools

vdb-build:
cargo clean
Expand All @@ -35,11 +35,11 @@ vdb-tests:
${SET_LOWER_BOUNDS} ${MANIFEST_PATH_ARGS}
make -f Makefile build-tests

vdb-stratis-dumpmetadata:
vdb-stratisd-tools:
cargo clean
make -f Makefile stratis-dumpmetadata
make -f Makefile stratisd-tools
${SET_LOWER_BOUNDS} ${MANIFEST_PATH_ARGS}
make -f Makefile stratis-dumpmetadata
make -f Makefile stratisd-tools


COMPARE_FEDORA_VERSIONS ?=
Expand Down
Loading