Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3215

Show
Ignore:
Timestamp:
02/17/08 15:49:02 (10 months ago)
Author:
Gregor
Message:

lib/compiler/gdc/configure*: No longer overrides GDC if GDC is provided on the console.

lib/compiler/gdc/gcc/configunix.d: This is generated automatically, shouldn't be in SVN.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/compiler/gdc/configure

    r3153 r3215  
    40324032# For Tango 
    40334033#GDC=$CC 
    4034 GDC=`echo $CC | sed 's/gcc$/gdc/'` 
     4034if test "x$GDC" = "x" 
     4035then 
     4036    GDC=`echo $CC | sed 's/gcc$/gdc/'` 
     4037fi 
    40354038 
    40364039{ echo "$as_me:$LINENO: checking If $GDC can compile D sources" >&5 
  • trunk/lib/compiler/gdc/configure.in

    r3153 r3215  
    172172# For Tango 
    173173#GDC=$CC 
    174 GDC=`echo $CC | sed 's/gcc$/gdc/'` 
     174if test "x$GDC" = "x" 
     175then 
     176    GDC=`echo $CC | sed 's/gcc$/gdc/'` 
     177fi 
    175178 
    176179AC_MSG_CHECKING([If $GDC can compile D sources])