This is the mail archive of the gcc-patches@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]
Other format: [Raw text]

gcc_release patches from 4.2.3-rc1 build


I've applied this patch with gcc_release changes I made for 4.2.3-rc1 to 
trunk and 4.2 branch.  SVN should not set an absolute path for the svn 
binary; instead it should rely on PATH as for every other program.  I 
needed --disable-multilib because I was building the release on Ubuntu 
x86_64, and in general one multilib should be sufficient testing (and 
suffices to create the generated files in the source directory).

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 131907)
+++ ChangeLog	(working copy)
@@ -1,3 +1,9 @@
+2008-01-28  Joseph Myers  <joseph@codesourcery.com>
+
+	* gcc_release (build_sources): Pass --disable-multilib to
+	gcc_build.
+	(SVN): Don't use full path.
+
 2008-01-21  Jonathan Wakely  <jwakely.gcc@gmail.com>
 
 	* update_web_docs_libstdcxx_svn: "docs" dir moved to "doc".
Index: gcc_release
===================================================================
--- gcc_release	(revision 131907)
+++ gcc_release	(working copy)
@@ -216,7 +216,7 @@
     inform "Building compiler"
     OBJECT_DIRECTORY=../objdir
     contrib/gcc_build -d ${SOURCE_DIRECTORY} -o ${OBJECT_DIRECTORY} \
-      -c "--enable-generated-files-in-srcdir" build || \
+      -c "--enable-generated-files-in-srcdir --disable-multilib" build || \
       error "Could not rebuild GCC"
   fi
 
@@ -505,7 +505,7 @@
 DATE=`date "+%Y%m%d"`
 LONG_DATE=`date "+%Y-%m-%d"`
 
-SVN=${SVN:-/usr/bin/svn}
+SVN=${SVN:-svn}
 # The CVS server containing the GCC repository.
 SVN_SERVER="gcc.gnu.org"
 # The path to the repository on that server.

-- 
Joseph S. Myers
joseph@codesourcery.com


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