From 23de679db535c53acc4877b47f86339ce5aaff1f Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Sun, 13 Nov 2022 17:57:08 -0600 Subject: [PATCH] release: Bump source release to 1.4GiB * The if statements now "make sense" * 1.4 GiB release images easily fit a "mini single layer DVD" * Our source build is around 1.1GiB * 200 MiB of "space" in our read-only image allows a little room for live-media shenanigans * Empty space is compressed anyway in release zip files Change-Id: I5ad017e3f80d5977ca9604f5bf200684796fc7b9 Reviewed-on: https://review.haiku-os.org/c/haiku/+/5791 Reviewed-by: Alex von Gluck IV Reviewed-by: waddlesplash --- build/jam/DefaultBuildProfiles | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/build/jam/DefaultBuildProfiles b/build/jam/DefaultBuildProfiles index 9356f7738d..5d85d3f5fb 100644 --- a/build/jam/DefaultBuildProfiles +++ b/build/jam/DefaultBuildProfiles @@ -70,11 +70,9 @@ rule DefineDefaultBuildProfiles HAIKU_ROOT_USER_REAL_NAME ?= "Yourself" ; AddGroupToHaikuImage party : 101 : user sshd ; HAIKU_IMAGE_HOST_NAME ?= shredder ; - if $(DEBUG) != 0 { - HAIKU_IMAGE_SIZE ?= 1300 ; - } - if $(HAIKU_INCLUDE_SOURCES) = 1 { - HAIKU_IMAGE_SIZE ?= 1100 ; + + if $(HAIKU_INCLUDE_SOURCES) = 1 || $(DEBUG) != 0 { + HAIKU_IMAGE_SIZE ?= 1400 ; } else { HAIKU_IMAGE_SIZE ?= 800 ; }