Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-05-31 17:18:04 -0700 (Thu, 31 May 2007)
Revision: 10852
Log message:

      Rearranged the .STATIC sections to make things lazier.
     
     Basically, the issue was that things of the sort
     
     .STATIC:
        XYZ_AVAILABLE = ...
     
     XYZ_ENABLED = $(XYZ_AVAILABLE)
     
     force the static section to be evaluated right away. My solution is to do
     
     .STATIC:
        XYZ_AVAILABLE = 
        XYZ_ENABLED = $(XYZ_AVAILABLE)
     
     instead.
     
     Jason, is this reasonable?

Changes  Path
+2 -2 omake-branches/0.9.8.x/lib/build/C.om
+7 -7 omake-branches/0.9.8.x/lib/build/LaTeX.om
+9 -9 omake-branches/0.9.8.x/lib/build/OCaml.om
+4 -8 omake-branches/0.9.8.x/lib/build/svn_realclean.om