diff options
author | midipix <writeonce@midipix.org> | 2021-06-14 20:04:12 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-14 20:05:15 +0000 |
commit | 3e5bd4b4acad3c3396e551e0cca14a3099f0e09c (patch) | |
tree | ba6ce3a59e525134e9e3c854d39b277fea9b5224 | |
parent | 80567e35cf3e95342621e489268d30b0a8a7e33d (diff) | |
download | sbpython3-3e5bd4b4acad3c3396e551e0cca14a3099f0e09c.tar.bz2 sbpython3-3e5bd4b4acad3c3396e551e0cca14a3099f0e09c.tar.xz |
build system: modern.m4: m4_pathvar(): also convert hyphen to an underscore.
-rw-r--r-- | sofort/core/modern.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/core/modern.m4 b/sofort/core/modern.m4 index ddee8bf..ad75ca9 100644 --- a/sofort/core/modern.m4 +++ b/sofort/core/modern.m4 @@ -88,7 +88,7 @@ m4_define([_],m4_defn([m4_dnl])) m4_define([m4_toupper],[m4_translit([[$1]],[[abcdefghijklmnopqrstuvwxyz]],[[ABCDEFGHIJKLMNOPQRSTUVWXYZ]])]) m4_define([m4_tolower],[m4_translit([[$1]],[[ABCDEFGHIJKLMNOPQRSTUVWXYZ]],[[abcdefghijklmnopqrstuvwxyz]])]) -m4_define([m4_pathvar],[m4_translit(m4_toupper([[$1]]),[/],[_])]) +m4_define([m4_pathvar],[m4_translit(m4_toupper([[$1]]),[/-],[__])]) m4_define([m4_srclist],[[$1] = \]) m4_define([m4_srcitem],[m4_tab[$1] \]) |