2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Remove unused rule 'basic-target.sources'.

[SVN r29801]
This commit is contained in:
Vladimir Prus
2005-06-27 10:21:11 +00:00
parent f8ee9d02f9
commit 1e09d2d462

View File

@@ -798,8 +798,8 @@ class file-reference : abstract-target
# Returns true if the referred file really exists;
rule exists ( )
{
location ;
return $(self.file-path) ;
location ;
return $(self.file-path) ;
}
# Returns the location of target. Needed by 'testing.jam'
@@ -807,9 +807,9 @@ class file-reference : abstract-target
{
if ! $(self.file-location)
{
local source-location = [ $(self.project).get source-location ] ;
local source-location = [ $(self.project).get source-location ] ;
for local src-dir in $(source-location)
for local src-dir in $(source-location)
{
if ! $(self.file-location)
{
@@ -1012,20 +1012,6 @@ class basic-target : abstract-target
}
}
# Returns the list of abstract-targets which are used as sources.
# The extra properties specified for sources are not represented.
rule sources ( )
{
if ! $(self.source-targets) {
for local s in $(self.sources)
{
self.source-targets +=
[ targets.resolve-reference $(s) : $(self.project) ] ;
}
}
return $(self.source-targets) ;
}
rule requirements ( )
{
return $(self.requirements) ;