Changes between Initial Version and Version 3 of Ticket #161

Show
Ignore:
Timestamp:
01/21/08 09:27:42 (5 years ago)
Author:
duncan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #161

    • Property priority changed from normal to high
    • Property difficulty changed from normal to easy (<4 hours)
    • Property summary changed from sdist and build uses different source directories to 'sdist' cannot find some modules that 'build' finds ok
  • Ticket #161 – description

    initial v3  
    11With the following project layout: 
    2  
     2{{{ 
    33network-bytestring 
    44  network-bytestring.cabal 
     
    99    ... 
    1010  ... 
    11  
     11}}} 
    1212Running configure, build and install works but running sdist results in: 
    13  
     13{{{ 
    1414Setup.lhs: Error: Could not find module: Network.Socket.ByteString with any suffix: ["gc","chs","hsc","x","y","ly","cpphs","hs","lhs"] 
    15  
     15}}} 
    1616I added some more debug output with the following result: 
    17  
     17{{{ 
    1818Setup.lhs: Error: Could not find module: Network.Socket.ByteString with any suffix: ["gc","chs","hsc","x","y","ly","cpphs","hs","lhs"] in any of these search directories: ["tests"] 
    19  
     19}}} 
    2020My theory is that builds includes "." among the source directories while sdist doesn't. 
    2121