Changeset 8681 for src/Pugs/Embed

Show
Ignore:
Timestamp:
01/15/06 16:49:47 (3 years ago)
Author:
audreyt
Message:

* -BPIR now returned to its full glory.
* Test.pm doesn't work yet because of named args.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Embed/Parrot.hsc

    r8672 r8681  
    2828    return Nothing 
    2929 
     30findExecutableInDirectory :: FilePath -> FilePath -> IO (Maybe FilePath) 
    3031findExecutableInDirectory dir cmd = do 
    3132##ifdef PUGS_HAVE_POSIX 
     
    3435    let file = dir ++ ('\\':cmd) ++ ".exe" 
    3536##endif 
    36     print ("Exisitng", file) 
    3737    ok  <- doesFileExist file 
    3838    return $ if ok then Just file else Nothing