diff options
author | midipix <writeonce@midipix.org> | 2024-03-27 06:23:29 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-03-27 06:41:16 +0000 |
commit | ceb9782fd5ed4a0a714f93f25e3f46b8fdfb1c86 (patch) | |
tree | b6e690cb780ed2fd5fe4ae2d4cd8961bdc47de8e | |
parent | e5c426f6618c61fa6dfd35216993347ae173ef59 (diff) | |
download | slibtool-ceb9782fd5ed4a0a714f93f25e3f46b8fdfb1c86.tar.bz2 slibtool-ceb9782fd5ed4a0a714f93f25e3f46b8fdfb1c86.tar.xz |
slibtool.m4: SLIBTOOL_PROG_LEX: explicitly save LEX and LEXLIB to the makefile.
-rw-r--r-- | m4/slibtool.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/m4/slibtool.m4 b/m4/slibtool.m4 index a641b2a..3f0c1c2 100644 --- a/m4/slibtool.m4 +++ b/m4/slibtool.m4 @@ -376,6 +376,9 @@ fi if [[ -z "${LEX}" ]]; then AC_CHECK_PROG([LEX],[lex],[lex]) fi + +AC_SUBST([LEX]) +AC_SUBST([LEXLIB]) ]) |