diff options
author | dos-reis <gdr@axiomatics.org> | 2008-10-27 03:38:21 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-10-27 03:38:21 +0000 |
commit | e65cdbacb778bc7a3b1ebfb0441091b1032a1387 (patch) | |
tree | ea5470bc8c027083537c690ec057e012e4080a02 /src/interp | |
parent | 761c8889e9cc0d4e73f32f06290fe7d07d75d551 (diff) | |
download | open-axiom-e65cdbacb778bc7a3b1ebfb0441091b1032a1387.tar.gz |
Quote path before dropping to shell.
Diffstat (limited to 'src/interp')
-rw-r--r-- | src/interp/i-syscmd.boot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/i-syscmd.boot b/src/interp/i-syscmd.boot index b3fcd0e9..b380f1f5 100644 --- a/src/interp/i-syscmd.boot +++ b/src/interp/i-syscmd.boot @@ -767,10 +767,10 @@ withAsharpCmd args == --% )copyright -- display copyright notice summary l == - runCommand STRCONC ('"cat ", systemRootDirectory(),'"/lib/summary") + runCommand strconc('"cat _"", systemRootDirectory(),'"/lib/summary_"") copyright () == - runCommand STRCONC ('"cat ", systemRootDirectory(),'"/lib/copyright") + runCommand strconc('"cat _"", systemRootDirectory(),'"/lib/copyright_"") --% )credits -- display credit list |