diff options
author | https://shinji.startssl.com/ <shinji@web> | 2011-02-27 21:38:52 +0000 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-02-27 21:38:52 +0000 |
commit | 821ed9e5912eba2ef29456a8c609c36ea1e1139b (patch) | |
tree | 31318c826e881b69300f3c27800e9f810a9fcfd6 /doc/bugs | |
parent | 8bf0b3606ba73b7ec9b77806b93b2ea1005f8af6 (diff) |
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/Perl_scripts_depend_on___47__usr__47__bin__47__perl.mdwn | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/bugs/Perl_scripts_depend_on___47__usr__47__bin__47__perl.mdwn b/doc/bugs/Perl_scripts_depend_on___47__usr__47__bin__47__perl.mdwn new file mode 100644 index 000000000..e6a29c48f --- /dev/null +++ b/doc/bugs/Perl_scripts_depend_on___47__usr__47__bin__47__perl.mdwn @@ -0,0 +1 @@ +On FreeBSD, perl defaults to installation in `/usr/local/bin/perl` since it is not a part of the base system. If the option to create symlinks in `/usr/bin` is not selected, building and running ikiwiki will fail because the shebang lines use `#!/usr/bin/perl [args]`. Changing this to `#!/usr/bin/env -S perl [args]` fixes the issue. |