February 01, 2004
I am trying to compile a d file, and I am getting the following error. Can someone shed some light into what "being in multiple packages" means?  Thanks.

cd c:/dev/d/util/src/sri/util/tree/
make -k -f c:/dev/d/util/Makefile compile
\dev\d\util\src\sri\util\tree\NodeIterator.d(3):
make: *** [compile] Error 1

Compilation exited abnormally with code 2 at Sat Jan 31 17:10:57


February 01, 2004
Andres Rodriguez wrote:
>> I am trying to compile a d file, and I am getting the following error. Can someone shed some light into what "being in multiple packages" means?  Thanks.
>>
>> cd c:/dev/d/util/src/sri/util/tree/
>> make -k -f c:/dev/d/util/Makefile compile
>> \dev\d\util\src\sri\util\tree\NodeIterator.d(3):
>> make: *** [compile] Error 1
>>
>> Compilation exited abnormally with code 2 at Sat Jan 31 17:10:57

Probably you have something like this:

----------sri\util.d
module sri.util;

----------sri\otherModule.d
module sri.util;

But to be sure, you'd have to show part of your code.

-----------------------
Carlos Santander Bernal