exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 0896848a041889d3e90ec527b8d201a18206e151
parent f2cb4a1d69daec3cb99e068b9fe00b8342785dc7
Author: Florian Dold <florian@dold.me>
Date:   Wed,  6 May 2026 19:19:04 +0200

fix handling of standard flags in configure

They must be exported so that meson setup respects them.

Diffstat:
Mconfigure | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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