mirror of https://github.com/xemu-project/xemu.git
build: Drop commented-out data packaging
This commit is contained in:
parent
158cc0d140
commit
ae55a3eb4d
4
build.sh
4
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
|
||||
|
|
Loading…
Reference in New Issue