diff options
-rw-r--r-- | comfignat.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/comfignat.mk b/comfignat.mk index f481b20..0cdc7c0 100644 --- a/comfignat.mk +++ b/comfignat.mk @@ -40,9 +40,10 @@ nil = inert_space = _Comfignat_magic_protective_space_character_substitute_ +inert_tab = _Comfignat_magic_protective_tab_character_substitute_ inert_percent = _Comfignat_magic_protective_percent_character_substitute_ -mung_string = ${subst %,${inert_percent},${subst ${nil} ,${inert_space},${1}}} -unmung_string = ${subst ${inert_percent},%,${subst ${inert_space}, ,${1}}} +mung_string = ${subst %,${inert_percent},${subst ${nil} ,${inert_tab},${subst ${nil} ,${inert_space},${1}}}} +unmung_string = ${subst ${inert_percent},%,${subst ${inert_tab}, ,${subst ${inert_space}, ,${1}}}} # mung_string and unmung_string are used to prevent Make from interpreting # space and percent characters in strings. |