changeset 14860:e027f98403c3

fix typo in error message in pkg.m * scripts/pkg/pkg.m: fix typo in error message given when archprefix cannot be created.
author Carlo de Falco <cdf@users.sourceforge.net>
date Fri, 13 Jul 2012 00:05:49 +0200
parents 257a7a7bb303
children f7afecdd87ef 6bc39019f726
files scripts/pkg/pkg.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/pkg/pkg.m	Thu Jul 12 11:14:26 2012 -0400
+++ b/scripts/pkg/pkg.m	Fri Jul 13 00:05:49 2012 +0200
@@ -441,7 +441,7 @@
           catch
             [status, msg, msgid] = mkdir (archprefix);
             if (status == 0)
-              error("cannot create prefix %s: %s", prefix, msg);
+              error("cannot create archprefix %s: %s", archprefix, msg);
             endif
             warning ("creating the directory %s\n", archprefix);
             archprefix = absolute_pathname (archprefix);