OSDN Git Service

* c-common.c (const_strip_array_types): Delete.
[pf3gnuchains/gcc-fork.git] / contrib / gcc_build
index 7ad2484..722645e 100755 (executable)
@@ -201,7 +201,8 @@ SVN_SERVER="gcc.gnu.org"
 # The path to the repository on that server.
 SVN_REPOSITORY="/svn/gcc/"
 # The branch to check out from that server.
-SVN_BRANCH="trunk"
+# Defaults to trunk if no branch is defined with -b.
+SVN_BRANCH=""
 # The SVN protocol to use.
 SVN_PROTOCOL="svn"
 # The username to use when connecting to the server.
@@ -285,8 +286,10 @@ if [ ${CHECKOUT} -eq 0 ] && test -n "${SVN_BRANCH}"; then
 fi
 
 # Validate the branch name.
-if test "${SVN_BRANCH}" != "trunk"; then
+if test -n "${SVN_BRANCH}"; then
     SVN_BRANCH="branches/${SVN_BRANCH}";
+else
+    SVN_BRANCH="trunk";
 fi
 
 # Checkout the tree.