changeset 14952: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 6bc39019f726 f7afecdd87ef
files scripts/pkg/pkg.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/pkg/pkg.m
+++ b/scripts/pkg/pkg.m
@@ -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);