aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install
diff options
context:
space:
mode:
authorJohn-Mark Gurney <jmg@FreeBSD.org>2005-06-27 17:10:22 +0000
committerJohn-Mark Gurney <jmg@FreeBSD.org>2005-06-27 17:10:22 +0000
commit522738a9a471851eef5b100e996accc8028885c6 (patch)
treeed4fc7aaafdeb6cc9af61d9330763d5ee189ec0c /usr.sbin/pkg_install
parentd2adf18ed95437c6001ebdf4b4ac8e9c7748f501 (diff)
Notes
Diffstat (limited to 'usr.sbin/pkg_install')
-rw-r--r--usr.sbin/pkg_install/create/pkg_create.13
-rw-r--r--usr.sbin/pkg_install/lib/plist.c4
2 files changed, 3 insertions, 4 deletions
diff --git a/usr.sbin/pkg_install/create/pkg_create.1 b/usr.sbin/pkg_install/create/pkg_create.1
index 66474d5b45c4..62599ead73be 100644
--- a/usr.sbin/pkg_install/create/pkg_create.1
+++ b/usr.sbin/pkg_install/create/pkg_create.1
@@ -62,8 +62,7 @@ command is used to create packages that will subsequently be fed to
one of the package extraction/info utilities.
The input description
and command line arguments for the creation of a package are not
-really meant to be human-generated, though it is easy enough to
-do so.
+meant to be human-generated, though it is easy enough to do so.
It is more expected that you will use a front-end tool for
the job rather than muddling through it yourself.
Nonetheless, a short
diff --git a/usr.sbin/pkg_install/lib/plist.c b/usr.sbin/pkg_install/lib/plist.c
index 8ab0535988b7..e5aa6dc55f34 100644
--- a/usr.sbin/pkg_install/lib/plist.c
+++ b/usr.sbin/pkg_install/lib/plist.c
@@ -546,7 +546,7 @@ delete_hierarchy(const char *dir, Boolean ign_err, Boolean nukedirs)
cp1 = cp2 = strdup(dir);
if (!fexists(dir)) {
if (!ign_err)
- warnx("%s '%s' doesn't really exist",
+ warnx("%s '%s' doesn't exist",
isdir(dir) ? "directory" : "file", dir);
return !ign_err;
}
@@ -572,7 +572,7 @@ delete_hierarchy(const char *dir, Boolean ign_err, Boolean nukedirs)
return 0;
if (RMDIR(dir) && !ign_err) {
if (!fexists(dir))
- warnx("directory '%s' doesn't really exist", dir);
+ warnx("directory '%s' doesn't exist", dir);
else
return 1;
}