Changeset 4902 for src/Pugs/Embed
- Timestamp:
- 06/21/05 14:30:14 (4 years ago)
- svk:copy_cache_prev:
- 6641
- Files:
-
- 1 modified
-
src/Pugs/Embed/Parrot.hsc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Embed/Parrot.hsc
r4788 r4902 41 41 -- so we use the next fastest CGP core. 42 42 args <- getEnv "PUGS_PARROT_OPTS" 43 let args' | isJust args = fromJust args44 | otherwise = "-C"43 let args' | isJust args && fromJust args /= "" = fromJust args 44 | otherwise = "-C" 45 45 rawSystem cmd [args', file] 46 46 return ()
