diff --git a/recipes/wip/emulators/boxedwine/recipe.toml b/recipes/wip/emulators/boxedwine/recipe.toml
index 57c61762d95961a0be30a0f366542b1f0e2052a8..2d2507c08cc08931379a4c94a8df8081b8ce91b2 100644
--- a/recipes/wip/emulators/boxedwine/recipe.toml
+++ b/recipes/wip/emulators/boxedwine/recipe.toml
@@ -15,7 +15,6 @@ dependencies = [
     "zlib",
 ]
 script = """
-mkdir -p "${COOKBOOK_STAGE}/bin"
 cd "${COOKBOOK_SOURCE}/project/linux"
 #TODO: USE MAKEFILE
 #TODO: USE X64 CPU CORE
@@ -83,5 +82,7 @@ ${TARGET}-gcc -std=c++17 -O2 \
   -DSDL2=1 \
   -DSIMDE_SSE2_NO_NATIVE \
   -static \
-  -o "${COOKBOOK_STAGE}/bin/boxedwine"
+  -o "${COOKBOOK_BUILD}/boxedwine"
+mkdir -p "${COOKBOOK_STAGE}/bin"
+cp -v "${COOKBOOK_BUILD}/boxedwine" "${COOKBOOK_STAGE}/bin/boxedwine"
 """