taler-mdb

Code for GNU Taler on vending machines with Multi-Drop-Bus
Log | Files | Refs | Submodules | README | LICENSE

commit 915924deafd2bd2a9e5e5bbbfc6c1da5ae5151ca
parent 82160019ebd5b794b7e0457a1c1381a524db3fe7
Author: Florian Dold <florian@dold.me>
Date:   Sat,  5 Sep 2026 17:32:51 +0200

export standard flags and utils in configure

Allows meson setup to pick them up

Diffstat:
Mconfigure | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/configure b/configure @@ -98,9 +98,12 @@ while [ "$#" -gt "0" ]; do done ;; *) - for flag in $standard_utils $standard_flags standard_vars; do + for flag in $standard_utils $standard_flags $standard_vars; do [ "$flag" = "$arg" ] && eval "$flag=\"$argparam\"" done + for flag in $standard_utils $standard_flags; do + [ "$flag" = "$arg" ] && eval export "$flag" + done ;; esac