Author: kwilliams
Date: Sat Mar 24 20:12:31 2007
New Revision: 9328
Modified:
Module-Build/trunk/Changes
Module-Build/trunk/lib/Module/Build/Base.pm
Log:
Mention --allow_mb_mismatch
Modified: Module-Build/trunk/Changes
==============================================================================
--- Module-Build/trunk/Changes (original)
+++ Module-Build/trunk/Changes Sat Mar 24 20:12:31 2007
@@ -11,6 +11,9 @@
- Improved our prompt() method, which could sometimes hang before the
user got a chance to see a prompt. [Andreas Koenig]
+ - Added a note about --allow_mb_mismatch to the error message that
+ happens right before someone might want to use that parameter.
+
- Added DragonflyBSD to the list of known Unix OSes.
- get_action_docs() dies on error rather than twiddling $@
Modified: Module-Build/trunk/lib/Module/Build/Base.pm
==============================================================================
--- Module-Build/trunk/lib/Module/Build/Base.pm (original)
+++ Module-Build/trunk/lib/Module/Build/Base.pm Sat Mar 24 20:12:31 2007
@@ -74,7 +74,8 @@
unless ($self->allow_mb_mismatch) {
my $mb_version = $Module::Build::VERSION;
die(" * ERROR: Configuration was initially created with Module::Build
version '$self->{properties}{mb_version}',\n".
- " but we are now using version '$mb_version'. Please re-run the
Build.PL or Makefile.PL script.\n")
+ " but we are now using version '$mb_version'. Please re-run the
Build.PL or Makefile.PL script,\n".
+ " or use --allow_mb_mismatch 1 to skip this version check.\n")
if $mb_version ne $self->{properties}{mb_version};
}