summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-24 17:33:29 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-24 17:33:29 +0100
commitf75970a24b103ec743e85a45b9e3c400b0469df1 (patch)
tree722e62a414fa44faf54298f391849823f5e45c96
parent7a9dd13f0497dca6c5557caf85b2bf51677bf25b (diff)
downloadperl-f75970a24b103ec743e85a45b9e3c400b0469df1.tar.gz
perl.morph: assume PREFIX is set, set lib paths
sitelib usually includes the version number, sitearch includes the architecture as well. We don't need this as we will only ever have one version of perl installed on a system and different chunks are needed for different architectures anyway.
-rw-r--r--perl.morph2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.morph b/perl.morph
index 1531f0f7cf..a9f701e9a3 100644
--- a/perl.morph
+++ b/perl.morph
@@ -2,7 +2,7 @@
"name": "perl",
"kind": "chunk",
"configure-commands": [
- "sh Configure -des -Dprefix=\"${PREFIX-/usr}\" -Dvendorprefix=\"${PREFIX-/usr}\" -Dman1dir=\"${PREFIX-/usr}\"/share/man/man1 -Dman3dir=\"${PREFIX-/usr}\"/share/man/man3 -Dpager=\"${PREFIX-/usr}/bin/less -isR\" -Duseshrplib"
+ "sh Configure -des -Dprefix=\"$PREFIX\" -Dvendorprefix=\"$PREFIX\" -Dman1dir=\"$PREFIX\"/share/man/man1 -Dman3dir=\"$PREFIX\"/share/man/man3 -Dpager=\"$PREFIX/bin/less -isR\" -Duseshrplib -Dsitelib=\"$PREFIX/lib/perl5\" -Dsitearch=\"$PREFIX/lib/perl5\""
],
"build-commands": [
"make"