Description: Reference Debian install locations Forwarded: not-needed Author: Bryan Newbold --- a/scm.info +++ b/scm.info @@ -2721,11 +2721,11 @@ file has (different) meanings to SCM and This combination of interpretatons allows SCM source files to be used as POSIX shell-scripts if the first line is: - #! /usr/local/bin/scm \ + #! /usr/bin/scm \ The following Scheme-Script prints factorial of its argument: - #! /usr/local/bin/scm \ %0 %* + #! /usr/bin/scm \ %0 %* - !# (define (fact.script args) --- a/scm.texi +++ b/scm.texi @@ -2368,14 +2368,14 @@ This combination of interpretatons allow POSIX shell-scripts if the first line is: @example -#! /usr/local/bin/scm \ +#! /usr/bin/scm \ @end example @noindent The following Scheme-Script prints factorial of its argument: @example -#! /usr/local/bin/scm \ %0 %* +#! /usr/bin/scm \ %0 %* - !# (define (fact.script args)