From 827bb06a46cff19a77d3faf338b9f138cdafa8f7 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Thu, 24 Apr 2008 23:40:39 +0000 Subject: If you want variables to be expanded, they have to be in double-quoted strings. --- perl/Makefile.PL.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perl') diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in index 9deae88..5c47220 100644 --- a/perl/Makefile.PL.in +++ b/perl/Makefile.PL.in @@ -7,9 +7,9 @@ my $version = '@PACKAGE_VERSION@'; $version =~ s/\.(\d)$/.0$1/; # Set a prefix for ExtUtils::MakeMaker if we were given one for configure. -my $prefix = '@prefix@'; -my $datarootdir = '@datarootdir@'; -my $datadir = '@datadir@'; +my $prefix = "@prefix@"; +my $datarootdir = "@datarootdir@"; +my $datadir = "@datadir@"; WriteMakefile( NAME => 'Wallet', @@ -17,5 +17,5 @@ WriteMakefile( ABSTRACT => 'Wallet: a secure credential management system', AUTHOR => 'Russ Allbery (rra@stanford.edu)', (($prefix ne '/usr' && $prefix ne '/usr/local') ? - (PREFIX => '@datadir@') : ()) + (PREFIX => $datadir) : ()) ); -- cgit v1.2.3