This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
PATCH: gcc_build
- To: gcc-patches at gcc dot gnu dot org
- Subject: PATCH: gcc_build
- From: Mark Mitchell <mark at codesourcery dot com>
- Date: Mon, 21 May 2001 23:44:48 -0700
- Organization: CodeSourcery, LLC
This patch makes the gcc_build script DTRT with respect to grabbing
new directories as they appear. Jason's recent V3 posting about the
testsuite clued me in to the need for this.
Applied on the mainline and on the branch.
--
Mark Mitchell mark@codesourcery.com
CodeSourcery, LLC http://www.codesourcery.com
2001-05-21 Mark Mitchell <mark@codesourcery.com>
* gcc_build: Use -d when invoking gcc_update.
Index: gcc_build
===================================================================
RCS file: /cvs/gcc/gcc/contrib/gcc_build,v
retrieving revision 1.9
diff -c -p -r1.9 gcc_build
*** gcc_build 2000/11/21 19:16:45 1.9
--- gcc_build 2001/05/22 06:40:22
***************
*** 9,15 ****
# Contents:
# Script to automatically download and build GCC.
#
! # Copyright (c) 2000 Free Software Foundation.
#
# This file is part of GNU CC.
#
--- 9,15 ----
# Contents:
# Script to automatically download and build GCC.
#
! # Copyright (c) 2000, 2001 Free Software Foundation.
#
# This file is part of GNU CC.
#
*************** update_gcc() {
*** 127,133 ****
changedir ${DESTINATION}
# Update the tree
! ./contrib/gcc_update || \
error "Could not update GCC"
}
--- 127,133 ----
changedir ${DESTINATION}
# Update the tree
! ./contrib/gcc_update -d || \
error "Could not update GCC"
}