This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: 1.1.2pre: mismatch between gcc/configure and gcc/configure.in



  In message <99030501285401.00803@ns1102.munich.netsurf.de>you write:
  > Hi,
  > 
  > currently gcc/configure and gcc/configure.in disagree on how to install cpp
  > :
  > 
  > gcc/configure:
  > # Handle cpp installation.
  > if [ x$enable_cpp != x ]
  > then
  >   if [ x$cpp_install_dir = x ]
  >   then
  >     case $target in
  >     *-*-linux-gnu*)
  >       if [ x$prefix = x/usr ]
  >       then
  >         cpp_install_dir=../lib
  >       fi
  >       ;;
  >     esac
  >   fi
  > 
  >   tmake_file="$tmake_file t-install-cpp"
  > fi
  > 
  > gcc/configure.in:
  > # Handle cpp installation.
  > if [[ x$enable_cpp != x ]]
  > then
  >   tmake_file="$tmake_file t-install-cpp"
  > fi
  > 
  > The implementation in gcc/configure looks like the correct one to me.
Actually, the implementation in configure.in is correct.  It was my 
mistake in that I forgot to rerun autoconf to rid configure of incorrect
changes from HJ (it is totally incorrect for the install procedure to
write outside of $prefix unless explicitly asked for).

Thanks, I'll take care of this.

jeff


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]