diff options
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/interp/i-syscmd.boot | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b4ee3f7b..2e8f3add 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,10 @@ 2008-10-26 Gabriel Dos Reis <gdr@cs.tamu.edu> + * interp/i-syscmd.boot (summary): Quote path. + (copyright): Likewise. + +2008-10-26 Gabriel Dos Reis <gdr@cs.tamu.edu> + * hyper/presea.in: Rename from hyper/presea. `awk' is not substitued at configuration time. 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 |