[haiku-commits] haiku: hrev47592 - build/jam

  • From: pulkomandy@xxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 29 Jul 2014 11:25:53 +0200 (CEST)

hrev47592 adds 1 changeset to branch 'master'
old head: 44a4999b899a990c084a1c39e53857a8f929f0fe
new head: dd6cdcf0b7508feabf4cb903c67f8783cb0eaeea
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=dd6cdcf+%5E44a4999

----------------------------------------------------------------------------

dd6cdcf: Fix copypaste bug in UnitTest rule.
  
  Make the unittests target actually build all the UnitTests and not just
  the UnitTestLibs.

                             [ Adrien Destugues <pulkomandy@xxxxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev47592
Commit:      dd6cdcf0b7508feabf4cb903c67f8783cb0eaeea
URL:         http://cgit.haiku-os.org/haiku/commit/?id=dd6cdcf
Author:      Adrien Destugues <pulkomandy@xxxxxxxxxxxxx>
Date:        Tue Jul 29 09:17:42 2014 UTC

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 1 deletion(-)
build/jam/TestsRules | 2 +-

----------------------------------------------------------------------------

diff --git a/build/jam/TestsRules b/build/jam/TestsRules
index bd30fe7..77ff5b0 100644
--- a/build/jam/TestsRules
+++ b/build/jam/TestsRules
@@ -59,7 +59,7 @@ rule UnitTest
        SimpleTest $(target) : $(sources) : $(libraries) libcppunit.so
                : $(resources) ;
 
-       Depends unittests : $(lib) ;
+       Depends unittests : $(target) ;
 }
 
 rule TestObjects


Other related posts:

  • » [haiku-commits] haiku: hrev47592 - build/jam - pulkomandy