From 97e8f346a88eccf4d1608c21d5cc6ee9620c1c41 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Wed, 13 Jun 2012 14:33:05 +0200 Subject: [PATCH] bindings/Makefile: perl: Use INSTALL_BASE rather than PREFIX. Some versions of Perl / ExtUtils::MakeMaker will else abort with an error message explaining INSTALL_BASE and PREFIX may not be used both. However, I don't know where the other definition comes from. Signed-off-by: Florian Forster --- bindings/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/Makefile.am b/bindings/Makefile.am index f39e9bbb..69312fd1 100644 --- a/bindings/Makefile.am +++ b/bindings/Makefile.am @@ -23,7 +23,7 @@ perl: perl/Makefile perl/Makefile: .perl-directory-stamp perl/Makefile.PL \ $(top_builddir)/config.status - cd perl && @PERL@ Makefile.PL PREFIX=$(prefix) @PERL_BINDINGS_OPTIONS@ + cd perl && @PERL@ Makefile.PL INSTALL_BASE=$(prefix) @PERL_BINDINGS_OPTIONS@ .perl-directory-stamp: if test ! -d perl; then \ -- 2.11.0