Added an "isExecutable" parameter to the Translator rule. All
translators pass "true" (was used before), but I suppose most of them don't really need it. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20605 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -122,12 +122,10 @@ rule Addon target : sources : libraries : isExecutable
|
||||
AddSharedObjectGlueCode $(target) : $(isExecutable) ;
|
||||
}
|
||||
|
||||
rule Translator target : sources : libraries
|
||||
rule Translator target : sources : libraries : isExecutable
|
||||
{
|
||||
# Translator <target> : <sources> : <libraries> ;
|
||||
# TODO: Although they currently all are, translators don't need to be
|
||||
# executable. Introduce a flag as for Addon.
|
||||
Addon $(target) : $(sources) : $(libraries) : true ;
|
||||
# Translator <target> : <sources> : <libraries> : <isExecutable> ;
|
||||
Addon $(target) : $(sources) : $(libraries) : $(isExecutable) ;
|
||||
}
|
||||
|
||||
rule ScreenSaver target : sources : libraries
|
||||
|
||||
Reference in New Issue
Block a user