texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo update (Sun Oct 17 17:22:01 EDT 2004)


From: Karl Berry
Subject: texinfo update (Sun Oct 17 17:22:01 EDT 2004)
Date: Sun, 17 Oct 2004 17:22:09 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.398
retrieving revision 1.399
diff -c -r1.398 -r1.399
*** ChangeLog   11 Oct 2004 18:16:46 -0000      1.398
--- ChangeLog   17 Oct 2004 20:50:24 -0000      1.399
***************
*** 1,3 ****
--- 1,9 ----
+ 2004-10-17  Karl Berry  <address@hidden>
+ 
+       * configure.ac: Clean environment for native configure.
+       From: Mark Fortescue <address@hidden>,
+       17 Oct 2004 19:09:53 +0100.
+ 
  2004-10-11  Stepan Kasal  <address@hidden>
  
        * configure.ac: Add a short explanation about cross compile.
Index: configure.ac
===================================================================
RCS file: /cvsroot/texinfo/texinfo/configure.ac,v
retrieving revision 1.41
retrieving revision 1.42
diff -c -r1.41 -r1.42
*** configure.ac        11 Oct 2004 18:16:46 -0000      1.41
--- configure.ac        17 Oct 2004 20:50:24 -0000      1.42
***************
*** 1,5 ****
  # Process this file with autoconf to produce a configure script.
! # $Id: configure.ac,v 1.41 2004/10/11 18:16:46 karl Exp $
  #
  # This file is free software; as a special exception the author gives
  # unlimited permission to copy and/or distribute it, with or without
--- 1,5 ----
  # Process this file with autoconf to produce a configure script.
! # $Id: configure.ac,v 1.42 2004/10/17 20:50:24 karl Exp $
  #
  # This file is free software; as a special exception the author gives
  # unlimited permission to copy and/or distribute it, with or without
***************
*** 91,108 ****
  # so that make compiles the native tools first.
  #
  if test "$cross_compiling" = no; then
!     native_tools=
  else
!     native_tools=tools
!     test -d "$native_tools" || mkdir "$native_tools"
!     confdir=`(cd "$srcdir";pwd)`
!     rm -f config.status
!     # Make sure the secondary configure won't complain
!     # that it's "already configured."
!     cd "$native_tools"
!     tools_only=1 $confdir/configure --build=${build} --host=${build} \
!       --disable-rpath --disable-nls
!     cd ..
  fi
  AC_SUBST(native_tools)
  AM_CONDITIONAL(TOOLS_ONLY, [[test "x$tools_only" = x1]])
--- 91,115 ----
  # so that make compiles the native tools first.
  #
  if test "$cross_compiling" = no; then
!   native_tools=
  else
!   native_tools=tools
!   test -d "$native_tools" || mkdir "$native_tools"
!   confdir=`(cd "$srcdir";pwd)`
!   echo "doing configure of native tools (${build})"
!   cd "$native_tools" || exit 1
!   # Make sure the secondary configure won't complain
!   # that it's "already configured."
!   rm -f config.status
!   # Run secondary configure in alternate environment or
!   # it gets the wrong CC etc.  env -i gives this build host configure
!   # a clean environment.
!   env -i CC=${BUILD_CC} AR=${BUILD_AR} RANLIB=${BUILD_RANLIB} PATH=${PATH} \
!       tools_only=1 \
!     ${confdir}/configure --build=${build} --host=${build} \
!                          --disable-rpath --disable-nls
!   cd .. || exit 1
!   echo "Continuing with main configure (${host})"
  fi
  AC_SUBST(native_tools)
  AM_CONDITIONAL(TOOLS_ONLY, [[test "x$tools_only" = x1]])
P ChangeLog
P configure.ac


reply via email to

[Prev in Thread] Current Thread [Next in Thread]