Actions
Bug #7659
closedRBConfig Change Breaks VC Build
    Bug #7659:
    RBConfig Change Breaks VC Build
  
Description
This commit breaks compiling ruby with VC 2010 (and I'm sure all other versions).
SHA-1: 275a9dcb8caa389ec7cbdfcfb860f56f5ddbc4d0
RBCONFIG changed from:
./.rbconfig.time
To:
.rbconfig.time
Which then results in this nmake error:
./../common.mk(517) : fatal error U1086: inference rule cannot have dependents
Stop.
Changing line 393 in win32/Makefile.sub to this:
RBCONFIG = ./.rbconfig.time
Fixes the issue.
        
           Updated by mame (Yusuke Endoh) almost 13 years ago
          Updated by mame (Yusuke Endoh) almost 13 years ago
          
          
        
        
      
      - Status changed from Open to Assigned
- Priority changed from 5 to 7
        
           Updated by yugui (Yuki Sonoda) almost 13 years ago
          Updated by yugui (Yuki Sonoda) almost 13 years ago
          
          
        
        
      
      - Status changed from Assigned to Closed
Applied at r38714.
Actions