From ae55a3eb4d4867a8979ca520baf1a44e6dc44224 Mon Sep 17 00:00:00 2001
From: Matt Borgerson <contact@mborgerson.com>
Date: Thu, 20 Jul 2023 17:39:12 -0700
Subject: [PATCH] build: Drop commented-out data packaging

---
 build.sh | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/build.sh b/build.sh
index 196ae9c52e..14bedad874 100755
--- a/build.sh
+++ b/build.sh
@@ -12,7 +12,6 @@ package_windows() {
     rm -rf dist
     mkdir -p dist
     cp build/qemu-system-i386w.exe dist/xemu.exe
-    # cp -r "${project_source_dir}/data" dist/
     python3 "${project_source_dir}/get_deps.py" dist/xemu.exe dist
     if [ "$debug" != "y" ]; then
         strip dist/xemu.exe
@@ -24,7 +23,6 @@ package_wincross() {
     rm -rf dist
     mkdir -p dist
     cp build/qemu-system-i386w.exe dist/xemu.exe
-    # cp -r "${project_source_dir}/data" dist/
     if [ "$debug" != "y" ]; then
         $STRIP dist/xemu.exe
     fi
@@ -68,7 +66,6 @@ package_macos() {
 
     # Copy in runtime resources
     mkdir -p dist/xemu.app/Contents/Resources
-    # cp -r "${project_source_dir}/data" dist/xemu.app/Contents/Resources
 
     # Generate icon file
     mkdir -p xemu.iconset
@@ -88,7 +85,6 @@ package_linux() {
     rm -rf dist
     mkdir -p dist
     cp build/qemu-system-i386 dist/xemu
-    # cp -r "${project_source_dir}/data" dist
     if test -e "${project_source_dir}/XEMU_LICENSE"; then
       cp "${project_source_dir}/XEMU_LICENSE" dist/LICENSE.txt
     else