From 04faaa1831fd27b72254b74ec8d5d58cd241fd28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Wed, 27 Jun 2012 19:33:01 +0000 Subject: [PATCH] Fixed a Boost Build bug - files included by a .rc file were being interpreted as sources instead of siblings for the .rc file. This effectively caused anything depending on the .rc file to get rebuilt every time if the included file had a newer timestamp then the .rc file including it. Problem reported by Pavel Machyniak . [SVN r79143] --- src/tools/rc.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rc.jam b/src/tools/rc.jam index 54a8c105c..9625e16d5 100644 --- a/src/tools/rc.jam +++ b/src/tools/rc.jam @@ -141,7 +141,7 @@ class res-scanner : scanner local all = $(angle) $(quoted) ; INCLUDES $(target) : $(all) ; - DEPENDS $(target) : $(res) ; + INCLUDES $(target) : $(res) ; NOCARE $(all) $(res) ; SEARCH on $(angle) = $(self.includes:G=) ; SEARCH on $(quoted) = $(b) $(self.includes:G=) ;