Changeset 7463 for src/Pugs.hs

Show
Ignore:
Timestamp:
10/09/05 13:58:21 (3 years ago)
Author:
autrijus
Message:

* look into perl6 sitelib/privlib, not perl5 one...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs.hs

    r7462 r7463  
    246246doExecuteHelper :: FilePath -> [String] -> IO () 
    247247doExecuteHelper helper args = do 
    248     let searchPaths = concatMap (\x -> map (x++) suffixes) [["."], ["..", ".."], [getConfig "sourcedir"], [getConfig "perl5privlib", "auto", "pugs"], [getConfig "perl5sitelib", "auto", "pugs"]] 
     248    let searchPaths = concatMap (\x -> map (x++) suffixes) [["."], ["..", ".."], [getConfig "sourcedir"], [getConfig "privlib", "auto", "pugs"], [getConfig "sitelib", "auto", "pugs"]] 
    249249    mbin <- findHelper searchPaths 
    250250    case mbin of