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:
Ingo Weinhold
2005-03-31 11:09:51 +00:00
parent 08a1527611
commit d7037cbd2c
2 changed files with 6 additions and 2 deletions
+4 -1
View File
@@ -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
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
BEOS_BIN="touch sync ln listarea listattr listsem listport \
+2 -1
View File
@@ -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) ;