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

Get rid of annoying 'unused source' warning for stage targets.

* new/stage.jam
  (stage-target-class.check-for-unused-sources): Override base method with
  an empty one, since the inherited logic does not make any sense for stage.


[SVN r18295]
This commit is contained in:
Vladimir Prus
2003-04-23 14:17:34 +00:00
parent bacc81dfc1
commit e540ddb202
2 changed files with 12 additions and 0 deletions

View File

@@ -75,6 +75,12 @@ rule stage-target-class ( name-and-dir : project : sources * : requirements * :
}
return $(result) ;
}
# Don't do nothing.
rule check-for-unused-sources ( result * : sources * )
{
}
}
class stage-target-class : basic-target ;

View File

@@ -75,6 +75,12 @@ rule stage-target-class ( name-and-dir : project : sources * : requirements * :
}
return $(result) ;
}
# Don't do nothing.
rule check-for-unused-sources ( result * : sources * )
{
}
}
class stage-target-class : basic-target ;