diff options
author | jmmv <jmmv> | 2002-12-27 19:41:45 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2002-12-27 19:41:45 +0000 |
commit | 2dedf3014cc8260fdb4d866b9e627ab665a24055 (patch) | |
tree | 0ac04e99cf303b83f85714e868165f4da37e8eb7 /sysutils/etcupdate | |
parent | 459d228f3fb2b5822a01a4949f6f5ccfaac35973 (diff) | |
download | pkgsrc-2dedf3014cc8260fdb4d866b9e627ab665a24055.tar.gz |
Update etcupdate to 20021227:
- Fix a typo in the yesno() function: add a missing question mark.
Approved by martti.
Diffstat (limited to 'sysutils/etcupdate')
-rw-r--r-- | sysutils/etcupdate/Makefile | 4 | ||||
-rwxr-xr-x | sysutils/etcupdate/files/etcupdate | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sysutils/etcupdate/Makefile b/sysutils/etcupdate/Makefile index 4028e4a0bd3..849ea6c797c 100644 --- a/sysutils/etcupdate/Makefile +++ b/sysutils/etcupdate/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2002/09/28 06:18:35 martti Exp $ +# $NetBSD: Makefile,v 1.17 2002/12/27 19:41:45 jmmv Exp $ -DISTNAME= etcupdate-20020928 +DISTNAME= etcupdate-20021227 CATEGORIES= sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/sysutils/etcupdate/files/etcupdate b/sysutils/etcupdate/files/etcupdate index 8a68bd611ca..9271033224d 100755 --- a/sysutils/etcupdate/files/etcupdate +++ b/sysutils/etcupdate/files/etcupdate @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: etcupdate,v 1.17 2002/09/28 06:18:35 martti Exp $ +# $NetBSD: etcupdate,v 1.18 2002/12/27 19:41:46 jmmv Exp $ # # Copyright (c) 2001 The NetBSD Foundation, Inc. # All rights reserved. @@ -95,7 +95,7 @@ verbose() { yesno() { # $* = message to display - echo -n "${*} (y/[n]) " + echo -n "${*}? (y/[n]) " read ANSWER case "${ANSWER}" in y|Y) |