From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: location@lists.ipfire.org Subject: [PATCH] Makefile.am: Do not provide PREFIX value for perl build. Date: Mon, 22 Feb 2021 21:07:21 +0100 Message-ID: <20210222200721.32174-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3003984977457388572==" List-Id: --===============3003984977457388572== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This caused to gain the following error when building: Only one of PREFIX or INSTALL_BASE can be given. Not both. Using INSTALLDIRS=3Dvendor is the common way to get the modules installed into the right directories. Fixes #12573. Signed-off-by: Stefan Schantl --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index dc594f8..52a4722 100644 --- a/Makefile.am +++ b/Makefile.am @@ -228,7 +228,7 @@ build-perl: @test -e $(builddir)/src/perl/t/Location.t || ln -s --relative $(srcdir)/sr= c/perl/t/Location.t $(builddir)/src/perl/t/ @test -e $(builddir)/src/perl/typemap || ln -s --relative $(srcdir)/src/per= l/typemap $(builddir)/src/perl/ =20 - cd $(builddir)/src/perl && $(PERL) Makefile.PL PREFIX=3D"$(prefix)" \ + cd $(builddir)/src/perl && $(PERL) Makefile.PL INSTALLDIRS=3Dvendor \ INC=3D"-I$(abs_srcdir)/src" LIBS=3D"-L$(abs_builddir)/src/.libs -lloc" cd $(builddir)/src/perl && $(MAKE) CC=3D"$(CC)" LD=3D"$(LD)" LD_RUN_PATH=3D =20 --=20 2.20.1 --===============3003984977457388572==--