diff --git a/compilerlib/objectFiles.ml b/compilerlib/objectFiles.ml index 645273e1..6041f5e5 100644 --- a/compilerlib/objectFiles.ml +++ b/compilerlib/objectFiles.ml @@ -814,8 +814,10 @@ struct try let channel = open_in_bin name in let l1 = input_line channel in - if l1 <> this_file_version then - error "The package %s was compiled with a different version of the compiler." package_name; + # () # + if l1 <> this_file_version then + error "The package %s was compiled with a different version of the compiler." package_name + #; let v = (Marshal.from_channel channel : t) in close_in channel; v