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:
+4
-1
@@ -97,7 +97,10 @@ resattr=$sourceDir/objects/${arch}.R1/tools/resattr/resattr
|
|||||||
fsShellCommand=$sourceDir/objects/${arch}.R1/tests/add-ons/kernel/file_systems/fs_shell/fs_shell_command
|
fsShellCommand=$sourceDir/objects/${arch}.R1/tests/add-ons/kernel/file_systems/fs_shell/fs_shell_command
|
||||||
bfsShell=$sourceDir/objects/${arch}.R1/tests/add-ons/kernel/file_systems/bfs/bfs_shell/bfs_shell
|
bfsShell=$sourceDir/objects/${arch}.R1/tests/add-ons/kernel/file_systems/bfs/bfs_shell/bfs_shell
|
||||||
|
|
||||||
export RUN_WITHOUT_APP_SERVER=1
|
if [ x$RUN_WITHOUT_APP_SERVER != x ]; then
|
||||||
|
# define only, if not already set
|
||||||
|
export RUN_WITHOUT_APP_SERVER=1
|
||||||
|
fi
|
||||||
export TARGET_PLATFORM=haiku
|
export TARGET_PLATFORM=haiku
|
||||||
|
|
||||||
BEOS_BIN="touch sync ln listarea listattr listsem listport \
|
BEOS_BIN="touch sync ln listarea listattr listsem listport \
|
||||||
|
|||||||
+2
-1
@@ -14,7 +14,8 @@ if $(RUN_WITHOUT_REGISTRAR) {
|
|||||||
|
|
||||||
# If defined allows to run applications without the app server
|
# If defined allows to run applications without the app server
|
||||||
# -- needed until the app server runs on our kernel.
|
# -- 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 ] ;
|
local defines = [ FDefines RUN_WITHOUT_APP_SERVER ] ;
|
||||||
SubDirCcFlags $(defines) ;
|
SubDirCcFlags $(defines) ;
|
||||||
SubDirC++Flags $(defines) ;
|
SubDirC++Flags $(defines) ;
|
||||||
|
|||||||
Reference in New Issue
Block a user