]> sipb.mit.edu Git - ikiwiki.git/commitdiff
(no commit message)
authorhttps://shinji.startssl.com/ <shinji@web>
Sun, 27 Feb 2011 21:38:52 +0000 (21:38 +0000)
committerJoey Hess <joey@kitenet.net>
Sun, 27 Feb 2011 21:38:52 +0000 (21:38 +0000)
doc/bugs/Perl_scripts_depend_on___47__usr__47__bin__47__perl.mdwn [new file with mode: 0644]

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 (file)
index 0000000..e6a29c4
--- /dev/null
@@ -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.