Commit 8763704d by Joseph Myers Committed by Joseph Myers

configure.in: Determine and substitute gcc_version_full.

	* configure.in: Determine and substitute gcc_version_full.
	* configure: Regenerate.
	* gccbug.in: Use it to give full version.  Don't allow
	confidential PRs.

From-SVN: r37111
parent 76b0dc5e
2000-10-28 Joseph S. Myers <jsm28@cam.ac.uk>
* configure.in: Determine and substitute gcc_version_full.
* configure: Regenerate.
* gccbug.in: Use it to give full version. Don't allow
confidential PRs.
2000-10-28 Richard Henderson <rth@redhat.com> 2000-10-28 Richard Henderson <rth@redhat.com>
* recog.c (split_all_insns): Run cleanup_subreg_operands * recog.c (split_all_insns): Run cleanup_subreg_operands
......
...@@ -4174,7 +4174,8 @@ else ...@@ -4174,7 +4174,8 @@ else
gcc_version_trigger=${srcdir}/version.c gcc_version_trigger=${srcdir}/version.c
fi fi
changequote(,)dnl changequote(,)dnl
gcc_version=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/'` gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([^\"]*\)\".*/\1/'`
gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
changequote([,])dnl changequote([,])dnl
# Internationalization # Internationalization
...@@ -5147,6 +5148,7 @@ AC_SUBST(extra_programs) ...@@ -5147,6 +5148,7 @@ AC_SUBST(extra_programs)
AC_SUBST(float_h_file) AC_SUBST(float_h_file)
AC_SUBST(gcc_gxx_include_dir) AC_SUBST(gcc_gxx_include_dir)
AC_SUBST(gcc_version) AC_SUBST(gcc_version)
AC_SUBST(gcc_version_full)
AC_SUBST(gcc_version_trigger) AC_SUBST(gcc_version_trigger)
AC_SUBST(host_exeext) AC_SUBST(host_exeext)
AC_SUBST(host_extra_gcc_objs) AC_SUBST(host_extra_gcc_objs)
...@@ -5260,6 +5262,7 @@ dep_tmake_file='${dep_tmake_file}' ...@@ -5260,6 +5262,7 @@ dep_tmake_file='${dep_tmake_file}'
tmake_file='${tmake_file}' tmake_file='${tmake_file}'
thread_file='${thread_file}' thread_file='${thread_file}'
gcc_version='${gcc_version}' gcc_version='${gcc_version}'
gcc_version_full='${gcc_version_full}'
gcc_version_trigger='${gcc_version_trigger}' gcc_version_trigger='${gcc_version_trigger}'
local_prefix='${local_prefix}' local_prefix='${local_prefix}'
build_install_headers_dir='${build_install_headers_dir}' build_install_headers_dir='${build_install_headers_dir}'
......
...@@ -30,7 +30,7 @@ SUBMITTER=net ...@@ -30,7 +30,7 @@ SUBMITTER=net
GNATS_ADDR=gcc-gnats@gcc.gnu.org GNATS_ADDR=gcc-gnats@gcc.gnu.org
# The default release for this host. # The default release for this host.
DEFAULT_RELEASE="@gcc_version@" DEFAULT_RELEASE="@gcc_version_full@"
# The default organization. # The default organization.
DEFAULT_ORGANIZATION= DEFAULT_ORGANIZATION=
...@@ -199,7 +199,6 @@ esac ...@@ -199,7 +199,6 @@ esac
ORIGINATOR_C='<name of the PR author (one line)>' ORIGINATOR_C='<name of the PR author (one line)>'
ORGANIZATION_C='<organization of PR author (multiple lines)>' ORGANIZATION_C='<organization of PR author (multiple lines)>'
CONFIDENTIAL_C='<[ yes | no ] (one line)>'
SYNOPSIS_C='<synopsis of the problem (one line)>' SYNOPSIS_C='<synopsis of the problem (one line)>'
if [ -z "$SEVERITY_C" ]; then if [ -z "$SEVERITY_C" ]; then
SEVERITY_C='<[ non-critical | serious | critical ] (one line)>' SEVERITY_C='<[ non-critical | serious | critical ] (one line)>'
...@@ -290,7 +289,8 @@ X-GNATS-Notify: ...@@ -290,7 +289,8 @@ X-GNATS-Notify:
>Submitter-Id: $SUBMITTER >Submitter-Id: $SUBMITTER
>Originator: $ORIGINATOR >Originator: $ORIGINATOR
>Organization: ${ORGANIZATION-$ORGANIZATION_C} >Organization: ${ORGANIZATION-$ORGANIZATION_C}
>Confidential: $CONFIDENTIAL_C >Confidential: no
SEND-PR: Leave "Confidential" as "no"; all GCC PRs are public.
>Synopsis: $SYNOPSIS_C >Synopsis: $SYNOPSIS_C
>Severity: $SEVERITY_C >Severity: $SEVERITY_C
SEND-PR: critical GCC is completely not operational; no work-around known. SEND-PR: critical GCC is completely not operational; no work-around known.
...@@ -380,7 +380,7 @@ while [ -z "$REQUEST_ID" ]; do ...@@ -380,7 +380,7 @@ while [ -z "$REQUEST_ID" ]; do
PATTERN=">Confidential:" PATTERN=">Confidential:"
CONFIDENTIAL=`eval sed -n -e "\"$SED_CMD\"" $TEMP` CONFIDENTIAL=`eval sed -n -e "\"$SED_CMD\"" $TEMP`
case "$CONFIDENTIAL" in case "$CONFIDENTIAL" in
""|yes|no) CNT=`expr $CNT + 1` ;; no) CNT=`expr $CNT + 1` ;;
*) echo "$COMMAND: \`$CONFIDENTIAL' is not a valid value for \`Confidential'." ;; *) echo "$COMMAND: \`$CONFIDENTIAL' is not a valid value for \`Confidential'." ;;
esac esac
# #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment