Merge branch 'fix-fetch' into 'master'

Don't run reexport_flags on fetch

See merge request redox-os/redox!1979
This commit is contained in:
Jeremy Soller 2026-03-05 11:50:42 -07:00
commit 777cee8550

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"