# HG changeset patch # User Carlo de Falco # Date 1342130749 -7200 # Node ID e027f98403c39b488fbec3d48f3fb447d9b53326 # Parent 257a7a7bb30391e5b7c9d6c505c1550c9b4e7495 fix typo in error message in pkg.m * scripts/pkg/pkg.m: fix typo in error message given when archprefix cannot be created. diff -r 257a7a7bb303 -r e027f98403c3 scripts/pkg/pkg.m --- 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);