From 00a752019b1dc1419164a24be069e4eb03cef01b Mon Sep 17 00:00:00 2001 From: Jon Leech Date: Fri, 18 Jul 2025 12:13:06 +0100 Subject: [PATCH] Fix REVISION expansion in Makefile.release --- Makefile.release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.release b/Makefile.release index 1e0af4f..d7f6b7a 100644 --- a/Makefile.release +++ b/Makefile.release @@ -21,7 +21,7 @@ REGISTRY = $(GIT)/registry/vulkan update: revision-check create-branch update-files push-branch echo "Verify that Vulkan-Headers is on a branch with the new header updates." echo "Then push them to github and create an MR there with:" - echo " make -f Makefile.release REVISION=$REVISION push-branch" + echo " make -f Makefile.release REVISION=$(REVISION) push-branch" # Working branch for the update, and a test if it exists BRANCH = update-$(REVISION) @@ -128,7 +128,7 @@ push-branch: revision-check echo "Now create a pull request by going to the URL:" echo " https://github.com/KhronosGroup/Vulkan-Headers/pull/new/$(BRANCH)" echo "After accepting this PR, continue with:" - echo " make -f Makefile.release REVISION=$REVISION tag-branch" + echo " make -f Makefile.release REVISION=$(REVISION) tag-branch" # Tag main for the update after accepting the update PR TAG = v1.4.$(REVISION)