Error: Module compiling

BlitzMax Forums/BlitzMax Programming/Error: Module compiling

Anyone know what this error means?

Compiler Error
"Module does not match commandline module"

I saved this sample:
Strict

Module Pub.Test

in:

mod / pub.mod / Test.mod / Test.bmx

Then, when I hit 'build' I get the error.
I have MingGW installed. Do I need to do something externally?

Do you have a folder test.mod in pub.mod?
Is there a file in named test.bmx?
Does this file have a line module pub.test at the beginning (or after strict)

Does this help

Tried bmk makemods but nothing seems to happen.
No files are generated. No errors appear ..

 (in max folder)
> bin\bmk makemods Test.mod
> bin\bmk makemods pub\Test.mod
> bin\bmk makemods <blitzpath>\pub\Test.mod
> bin\bmk makemods <blitzpath>\pub\Test.mod\test.bmx
Any ideas as to where I should be pointing bmk makemods to?

bmk makemods pub.test

Still nothing.

how about

bmk makemods -a pub.test

Not sure if this issue has been resolved, but there used to be a problem with modules and capitalization. The solution was not to sure any capital letters in the module names or folders.

I second that, do not use CAPS at all.

Thats the answer. Renaming the Test.mod folder to a lowercase version solved the problem.
Thanks peeps.