aboutsummaryrefslogtreecommitdiff
path: root/gcc/gccbug.in
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@cam.ac.uk>2000-10-28 21:44:52 +0000
committerJoseph Myers <jsm28@cam.ac.uk>2000-10-28 21:44:52 +0000
commit4caca5eb48ab897458f577aca77dff9626a54ec4 (patch)
tree428a5de9a2ccc3709e29e5fca27df374cb094f55 /gcc/gccbug.in
parent9f6039209ef3d906dd09391e51986c5808fc1064 (diff)
* configure.in: Determine and substitute gcc_version_full.
* configure: Regenerate. * gccbug.in: Use it to give full version. Don't allow confidential PRs. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@37111 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gccbug.in')
-rwxr-xr-xgcc/gccbug.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/gccbug.in b/gcc/gccbug.in
index 18aba83bb33..6739e782172 100755
--- a/gcc/gccbug.in
+++ b/gcc/gccbug.in
@@ -30,7 +30,7 @@ SUBMITTER=net
GNATS_ADDR=gcc-gnats@gcc.gnu.org
# The default release for this host.
-DEFAULT_RELEASE="@gcc_version@"
+DEFAULT_RELEASE="@gcc_version_full@"
# The default organization.
DEFAULT_ORGANIZATION=
@@ -199,7 +199,6 @@ esac
ORIGINATOR_C='<name of the PR author (one line)>'
ORGANIZATION_C='<organization of PR author (multiple lines)>'
-CONFIDENTIAL_C='<[ yes | no ] (one line)>'
SYNOPSIS_C='<synopsis of the problem (one line)>'
if [ -z "$SEVERITY_C" ]; then
SEVERITY_C='<[ non-critical | serious | critical ] (one line)>'
@@ -290,7 +289,8 @@ X-GNATS-Notify:
>Submitter-Id: $SUBMITTER
>Originator: $ORIGINATOR
>Organization: ${ORGANIZATION-$ORGANIZATION_C}
->Confidential: $CONFIDENTIAL_C
+>Confidential: no
+SEND-PR: Leave "Confidential" as "no"; all GCC PRs are public.
>Synopsis: $SYNOPSIS_C
>Severity: $SEVERITY_C
SEND-PR: critical GCC is completely not operational; no work-around known.
@@ -380,7 +380,7 @@ while [ -z "$REQUEST_ID" ]; do
PATTERN=">Confidential:"
CONFIDENTIAL=`eval sed -n -e "\"$SED_CMD\"" $TEMP`
case "$CONFIDENTIAL" in
- ""|yes|no) CNT=`expr $CNT + 1` ;;
+ no) CNT=`expr $CNT + 1` ;;
*) echo "$COMMAND: \`$CONFIDENTIAL' is not a valid value for \`Confidential'." ;;
esac
#