Error: Module compiling

BlitzMax Forums/BlitzMax Programming/Error: Module compiling

EOF(Posted 2006) [#1]
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?


Dreamora(Posted 2006) [#2]
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)


tonyg(Posted 2006) [#3]
Does this help


EOF(Posted 2006) [#4]
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?


tonyg(Posted 2006) [#5]
bmk makemods pub.test


EOF(Posted 2006) [#6]
Still nothing.


Scott Shaver(Posted 2006) [#7]
how about

bmk makemods -a pub.test


Gabriel(Posted 2006) [#8]
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.


TartanTangerine (was Indiepath)(Posted 2006) [#9]
I second that, do not use CAPS at all.


EOF(Posted 2006) [#10]
Thats the answer. Renaming the Test.mod folder to a lowercase version solved the problem.
Thanks peeps.