Browse Source

lib/functions.in: fixed perl build handling to always install into 'vendor' even if a package reseted plconfopt

user/chris/test/patchcksum
Christian Wiese 13 years ago
parent
commit
b4f594bc53
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      lib/functions.in

+ 3
- 1
lib/functions.in

@ -981,7 +981,9 @@ build_this_package() {
else # styles that include a make run
if [ ! -f Makefile -a ! -f makefile -a \
-f Makefile.PL -a $runmkpl = 1 ]; then
perl Makefile.PL ${plconfopt:-INSTALLDIRS=vendor}
# always install into 'vendor' directory
var_append plconfopt ' ' "INSTALLDIRS=vendor"
perl Makefile.PL $plconfopt
fi
#
if [ ! -f Makefile -a ! -f makefile -a \

Loading…
Cancel
Save