From fb863824b80e42317b898da19a273ccc78c70fbd Mon Sep 17 00:00:00 2001 From: Andrea Grillo Date: Thu, 28 Mar 2024 15:00:43 +0100 Subject: [PATCH] Update 2023-07-21-makefile-tips.md --- _posts/2023-07-21-makefile-tips.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2023-07-21-makefile-tips.md b/_posts/2023-07-21-makefile-tips.md index aa50445..42bc369 100644 --- a/_posts/2023-07-21-makefile-tips.md +++ b/_posts/2023-07-21-makefile-tips.md @@ -69,7 +69,7 @@ From [“The Two Flavors of Variables” documentation of GNU Make](https://www. ```makefile x := foo -y := $(x) bar +y = $(x) bar x := later .PHONY: printx