Create packages_build folders per build type.

* The content of the preprocessed package-info files and the package
  contents depend on the build type, so we use a different folder for
  each build type.
This commit is contained in:
Oliver Tappe
2014-05-01 13:00:46 +02:00
parent 8c54af563c
commit 3d9c3125ac
11 changed files with 20 additions and 18 deletions
+6
View File
@@ -11,11 +11,17 @@ switch $(HAIKU_BUILD_PROFILE) {
case "minimum-*" : {
HAIKU_BUILD_TYPE = minimum ;
EnableBuildFeatures minimum_image ;
HAIKU_DEFINES += HAIKU_MINIMUM_BUILD ;
TARGET_DEFINES += HAIKU_MINIMUM_BUILD ;
}
case "*" : {
HAIKU_BUILD_TYPE = regular ;
EnableBuildFeatures regular_image ;
HAIKU_DEFINES += HAIKU_REGULAR_BUILD ;
TARGET_DEFINES += HAIKU_REGULAR_BUILD ;
}
}
Echo "Starting build of type $(HAIKU_BUILD_TYPE) ..." ;