summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1998-02-16 18:24:53 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1998-02-16 18:24:53 +0000
commit1e09e5bdbfb6901bf39674a66ad5791d759f6c97 (patch)
tree1f242da759af999c882b851e85dc77eba9e10177 /gnu
parent0b56e0673e47d1243403297f16dbd81947e0761c (diff)
Notes
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/send-pr/Makefile2
-rw-r--r--gnu/usr.bin/send-pr/categories1
-rw-r--r--gnu/usr.bin/send-pr/send-pr-el.in4
-rw-r--r--gnu/usr.bin/send-pr/send-pr.sh6
4 files changed, 7 insertions, 6 deletions
diff --git a/gnu/usr.bin/send-pr/Makefile b/gnu/usr.bin/send-pr/Makefile
index c2b19a6cd77f..842d65cc2c70 100644
--- a/gnu/usr.bin/send-pr/Makefile
+++ b/gnu/usr.bin/send-pr/Makefile
@@ -28,7 +28,7 @@ send-pr.el: send-pr-el.in Makefile
${.ALLSRC:N*Makefile} > ${.TARGET}
beforeinstall:
- ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
send-pr ${DESTDIR}${BINDIR}/send-pr
# called from /usr/src/etc/Makefile
diff --git a/gnu/usr.bin/send-pr/categories b/gnu/usr.bin/send-pr/categories
index ddf4e5674119..ad9d26dc36cc 100644
--- a/gnu/usr.bin/send-pr/categories
+++ b/gnu/usr.bin/send-pr/categories
@@ -6,3 +6,4 @@ i386
kern
misc
ports
+sparc
diff --git a/gnu/usr.bin/send-pr/send-pr-el.in b/gnu/usr.bin/send-pr/send-pr-el.in
index c66c97f73093..649dfd507be2 100644
--- a/gnu/usr.bin/send-pr/send-pr-el.in
+++ b/gnu/usr.bin/send-pr/send-pr-el.in
@@ -108,7 +108,7 @@
(defvar send-pr::sites nil
"List of GNATS support sites; computed at runtime.")
(defvar send-pr:default-site
- (or (gnats::get-config "GNATS_SITE") "freebsd-gnats@freebsd.org")
+ (or (gnats::get-config "GNATS_SITE") "freefall")
"Default site to send bugs to.")
(defvar send-pr:::site send-pr:default-site
"The site to which a problem report is currently being submitted, or NIL
@@ -127,7 +127,7 @@ at runtime.")
(defconst send-pr::fields
(` (("Category" send-pr::set-categories
(, (or (gnats::get-config "DEFAULT_CATEGORY") nil)) enum)
- ("Class" (("sw-bug") ("doc-bug") ("change-request") ("support"))
+ ("Class" (("sw-bug") ("doc-bug") ("change-request"))
(, (or (gnats::get-config "DEFAULT_CONFIDENTIAL") 0)) enum)
("Confidential" (("yes") ("no"))
(, (or (gnats::get-config "DEFAULT_CONFIDENTIAL") 1)) enum)
diff --git a/gnu/usr.bin/send-pr/send-pr.sh b/gnu/usr.bin/send-pr/send-pr.sh
index 931dc5c1ae79..5e042bf9b040 100644
--- a/gnu/usr.bin/send-pr/send-pr.sh
+++ b/gnu/usr.bin/send-pr/send-pr.sh
@@ -20,7 +20,7 @@
# along with GNU GNATS; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
-# $Id$
+# $Id: send-pr.sh,v 1.6 1996/10/19 21:42:40 joerg Exp $
# The version of this send-pr.
VERSION=3.2
@@ -244,7 +244,7 @@ CONFIDENTIAL_C='<[ yes | no ] (one line)>'
SYNOPSIS_C='<Synopsis of the problem (one line)>'
SEVERITY_C='<[ non-critical | serious | critical ] (one line)>'
PRIORITY_C='<[ low | medium | high ] (one line)>'
-CLASS_C='<[ sw-bug | doc-bug | change-request | support ] (one line)>'
+CLASS_C='<[ sw-bug | doc-bug | change-request ] (one line)>'
RELEASE_C='<Release number or tag (one line)>'
ENVIRONMENT_C='<Relevant environment information (multiple lines)>'
DESCRIPTION_C='<Precise description of the problem (multiple lines)>'
@@ -452,7 +452,7 @@ while [ -z "$REQUEST_ID" ]; do
PATTERN=">Class:"
CLASS=`eval sed -n -e "\"$SED_CMD\"" $TEMP`
case "$CLASS" in
- ""|sw-bug|doc-bug|change-request|support) CNT=`expr $CNT + 1` ;;
+ ""|sw-bug|doc-bug|change-request) CNT=`expr $CNT + 1` ;;
*) echo "$COMMAND: \`$CLASS' is not a valid value for \`Class'."
esac