Bugfix: RSP files were never recreated.

[SVN r20653]
This commit is contained in:
Vladimir Prus 2003-11-04 17:03:18 +00:00
parent 1fdffcdc6a
commit d01539f02d

View File

@ -166,6 +166,8 @@ rule response-file ( targets + : sources * : the-response-file : properties * )
local rsp = $(the-response-file:G=$(g)-rsp) ;
LOCATE on $(rsp) = [ on $(the-response-file) return $(LOCATE) ] ;
DEPENDS $(targets) : $(rsp) ;
# Cause RSP to be recreated if sources are out-of-date.
DEPENDS $(rsp) : $(sources) ;
# Add libraries from <library> property to the list of sources.
local libraries ;