Don't run reexport_flags on fetch

This commit is contained in:
Wildan M 2026-03-06 01:05:10 +07:00
parent cf717dc830
commit cc75d562ba
No known key found for this signature in database
GPG Key ID: 01AC53185C679C79

View File

@ -37,7 +37,10 @@ function DYNAMIC_INIT {
export LDFLAGS="${USER_LDFLAGS}-Wl,-rpath-link,${COOKBOOK_SYSROOT}/lib -L${COOKBOOK_SYSROOT}/lib"
export RUSTFLAGS="-C target-feature=-crt-static -L native=${COOKBOOK_SYSROOT}/lib -C link-arg=-Wl,-rpath-link,${COOKBOOK_SYSROOT}/lib"
export COOKBOOK_DYNAMIC=1
reexport_flags
if [ function = $(type -t reexport_flags) ]; then
reexport_flags
fi
}
COOKBOOK_AUTORECONF="autoreconf"