From 8a53fe0d4f10d17a2db17e39489f54c8a2d3c192 Mon Sep 17 00:00:00 2001 From: Ashish Kumar Yadav Date: Mon, 8 Mar 2021 20:51:22 +0530 Subject: [PATCH] Fixed typos in makefile --- GNUmakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 09bfb5f..868f0aa 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -15,10 +15,10 @@ E0BLOCKS = $(abspath blocks) # two level escaping of `\', one for sed and one for C E1BLOCKS = $(subst \,\\\\,${E0BLOCKS}) # escaping special character `&' and delimiter `=' for sed -E3BLOCKS = $(subst &,\&,${E2BLOCKS}) -E4BLOCKS = $(subst =,\=,${E3BLOCKS}) +E2BLOCKS = $(subst &,\&,${E1BLOCKS}) +E3BLOCKS = $(subst =,\=,${E2BLOCKS}) # escaping `"' for C -E2BLOCKS = $(subst ",\\",${E1BLOCKS}) +E4BLOCKS = $(subst ",\\",${E3BLOCKS}) # escaping `'' for shell EFBLOCKS = $(subst ','\'',${E4BLOCKS}) # this comment is a workaround for syntax highlighting bug in vim')