This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [patch] Fix gcc_build
- From: David Edelsohn <dje at watson dot ibm dot com>
- To: Steven Bosscher <stevenb at suse dot de>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Mon, 31 Oct 2005 00:10:43 -0500
- Subject: Re: [patch] Fix gcc_build
- References: <200510300839.52280.stevenb@suse.de>
This broke building GCC.
+# The branch to check out from that server.
+SVN_BRANCH="trunk"
...
+if [ ${CHECKOUT} -eq 0 ] && test -n "${SVN_BRANCH}"; then
+ error "Branch argument only makes sense when doing a checkout"
+fi
Your change always defines SVN_BRANCH, but then tests if it exists when
the user did not request a checkout.
David