diff options
author | jmmv <jmmv@pkgsrc.org> | 2002-12-27 19:41:45 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2002-12-27 19:41:45 +0000 |
commit | c759671d65c50e0a6636ff486099c2eb4a842888 (patch) | |
tree | 0ac04e99cf303b83f85714e868165f4da37e8eb7 /sysutils | |
parent | 51cc184bc939f5b227ddaa009cc8af818ed3e32c (diff) | |
download | pkgsrc-c759671d65c50e0a6636ff486099c2eb4a842888.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')
-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) |