Changeset 12829 for trunk


Ignore:
Timestamp:
02/03/12 12:40:08 (13 years ago)
Author:
tbretz
Message:
Removed colorgcc as a compiler option, it doesn't work with Ubuntu 11.11 - instead create links as suggested by colorgcc; check also if ROOTVERSION is valid
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/configure.ac

    r12769 r12829  
    2929CXXFLAGS+=$MYFLAGS
    3030
    31 AC_PROG_CC([colorgcc gcc])
    32 AC_PROG_CXX([colorgcc g++])
     31AC_PROG_CC([gcc])
     32AC_PROG_CXX([g++])
     33
     34COLORGCC=`which colorgcc`
     35AS_IF([test -n "$COLORGCC"], [
     36    AC_CONFIG_LINKS([g++:$COLORGCC gcc:$COLORGCC])
     37    PATH=./:$PATH
     38])
    3339
    3440#AC_PROG_CC_C99
     
    292298)
    293299
    294 if test "$ROOTEXEC" != no ;
     300if [test "$ROOTEXEC" != no -a -n "$ROOTVERSION"] ;
    295301then
    296302
Note: See TracChangeset for help on using the changeset viewer.