Now, we support a value of 0 for the RUN_WITHOUT_APP_SERVER variable in the libbe Jamfile. In makehdimage we don't override the variable's value, if it is already set anymore. This conveniently allows to set it to 0 in a wrapper script that invokes makehdimage -- no need to change makehdimage itself.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12183 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
+2
-1
@@ -14,7 +14,8 @@ if $(RUN_WITHOUT_REGISTRAR) {
|
||||
|
||||
# If defined allows to run applications without the app server
|
||||
# -- needed until the app server runs on our kernel.
|
||||
if $(RUN_WITHOUT_APP_SERVER) {
|
||||
RUN_WITHOUT_APP_SERVER ?= 0 ;
|
||||
if $(RUN_WITHOUT_APP_SERVER) != 0 {
|
||||
local defines = [ FDefines RUN_WITHOUT_APP_SERVER ] ;
|
||||
SubDirCcFlags $(defines) ;
|
||||
SubDirC++Flags $(defines) ;
|
||||
|
||||
Reference in New Issue
Block a user