summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-08-21 14:49:30 +0200
committerGitHub <noreply@github.com>2021-08-21 14:49:30 +0200
commitb2573f352e36ac5a5977a77b6a9329d86fe62ac3 (patch)
treeca99e4f86e326224b17a12f76e7c37cd23758544 /doc
parentd4a728969f2adba78b78d12e0be6de1b63189f6b (diff)
parent8f94a33b38fdd8b5e1c3e57303855364887ec332 (diff)
Merge pull request #134578 from smancill/phase-hooks-use-strings
treewide: ensure pre/post phase hooks are strings
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/perl.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/perl.section.md b/doc/languages-frameworks/perl.section.md
index dcb7dcb77b65..c992b9d658bb 100644
--- a/doc/languages-frameworks/perl.section.md
+++ b/doc/languages-frameworks/perl.section.md
@@ -122,7 +122,7 @@ ImageExifTool = buildPerlPackage {
};
buildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
- postInstall = lib.optional stdenv.isDarwin ''
+ postInstall = lib.optionalString stdenv.isDarwin ''
shortenPerlShebang $out/bin/exiftool
'';
};