commit: 5f77b83347a8cdf686f66c8e160d10d5ff146ddd
parent ea9b444c7ce0514c07e3d69c5c177856eb9aa289
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sat, 8 Jun 2024 07:04:52 +0200
init.sh: move profile_export after build_utils_std (need echo)
Diffstat:
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/init.sh b/init.sh
@@ -145,15 +145,6 @@ export CFLAGS="-Os -Wall -Wextra"
build_oyacc
-profile_export PATH="/bin:/usr/bin:/usr/local/bin"
-profile_export YACC="yacc"
-profile_export STRIP="true"
-profile_export INSTALL="install"
-profile_export AR="ar"
-# re-export due to prior lack of echo
-profile_export CC="$CC"
-profile_export CFLAGS="$CFLAGS"
-
export SHELL="/bin/loksh"
build_pdpmake || die
@@ -165,6 +156,15 @@ build_stubs || die
build_utils_std || die
+profile_export PATH="/bin:/usr/bin:/usr/local/bin"
+profile_export YACC="yacc"
+profile_export STRIP="true"
+profile_export INSTALL="install"
+profile_export AR="ar"
+# re-export due to prior lack of echo
+profile_export CC="$CC"
+profile_export CFLAGS="$CFLAGS"
+
# needs: make cat $CC $YACC rm mv $AR true test install mkdir
build_hierloom_devtools || die