From f10d051f4eead551bb9ce024736a1cf6b245769c Mon Sep 17 00:00:00 2001 From: Bryan Wilder Field Lozano Date: Tue, 11 Feb 2025 18:52:07 -0600 Subject: [PATCH] Move extraneous files --- recipes/tt-metalium/build.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/recipes/tt-metalium/build.sh b/recipes/tt-metalium/build.sh index ae51c629b2779..7a45da21d0f89 100644 --- a/recipes/tt-metalium/build.sh +++ b/recipes/tt-metalium/build.sh @@ -35,12 +35,12 @@ pip install --no-deps $SRC_DIR # And its a reasonable objection # Why is non python stuff in our python package? # For now, keep it in a separate output directory and symlink it for functionality -mkdir $PREFIX/sfpi_runtime -mv $SP_DIR/runtime $PREFIX/sfpi_runtime -ln -sf $PREFIX/sfpi_runtime $SP_DIR/runtime +mkdir $PREFIX/share/sfpi_runtime +mv $SP_DIR/runtime $PREFIX/share/sfpi_runtime +ln -sf $PREFIX/share/sfpi_runtime $SP_DIR/runtime # Again, C++ kernel sources are copied into our site-packages directory # Put them in a separate directory and symlink -mkdir $PREFIX/tt_metal -mv $SP_DIR/tt_metal $PREFIX/tt_metal -ln -sf $PREFIX/tt_metal $SP_DIR/tt_metal +mkdir $PREFIX/share/tt_metal +mv $SP_DIR/tt_metal $PREFIX/share/tt_metal +ln -sf $PREFIX/share/tt_metal $SP_DIR/tt_metal