diff options
author | Chris Rees <crees@FreeBSD.org> | 2013-01-18 16:33:28 +0000 |
---|---|---|
committer | Chris Rees <crees@FreeBSD.org> | 2013-01-18 16:33:28 +0000 |
commit | 217a62afd65e2afc83f185f4fe12a97e5020509a (patch) | |
tree | 54ba6aecbe659a574417f88771a40b46d8e85f14 | |
parent | f0bc5c13258777d81d7569e28823a4bc863602a0 (diff) |
Remove unused function from pkg-install, and dequote RESTRICTED
Notes
Notes:
svn path=/head/; revision=310614
-rw-r--r-- | japanese/Wnn6/Makefile | 2 | ||||
-rw-r--r-- | japanese/Wnn6/pkg-install | 18 |
2 files changed, 1 insertions, 19 deletions
diff --git a/japanese/Wnn6/Makefile b/japanese/Wnn6/Makefile index 425d0ba413f8..8707ad1c2532 100644 --- a/japanese/Wnn6/Makefile +++ b/japanese/Wnn6/Makefile @@ -23,7 +23,7 @@ MOUNT_DEV?= /dev/acd0c USERS= wnn -RESTRICTED= "You should buy from Omron Software Co., Ltd." +RESTRICTED= You should buy from Omron Software Co., Ltd NO_BUILD= yes IS_INTERACTIVE= yes diff --git a/japanese/Wnn6/pkg-install b/japanese/Wnn6/pkg-install index e0edcdb43dce..a5a407b36187 100644 --- a/japanese/Wnn6/pkg-install +++ b/japanese/Wnn6/pkg-install @@ -1,24 +1,6 @@ #!/bin/sh # an installation script for Wnn6 -check_pw() -{ - if which -s pw; then - : - else - cat <<EOF - -This system looks like a pre-2.2 version of FreeBSD. We see that it -is missing the "pw" utility. We need this utility. Please get and -install it, and try again. You can get the source from: - - ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/src/usr.sbin/pw.tar.gz - -EOF - exit 1 - fi -} - ask() { local question default answer |