From c9c45e4f89bc42fec00b71c50844a946bfcc6e0c Mon Sep 17 00:00:00 2001 From: Martijn Dekker Date: Fri, 6 Jan 2017 12:24:36 +0100 Subject: make irssi --with-perl build with separate object directory irssi 1.0.0 will not build if Perl is enabled and a separate object code directory is used. The problem was a relative path to an internal Perl dependency in four Makefile.PL.in files. --- src/perl/common/Makefile.PL.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/perl/common/Makefile.PL.in') diff --git a/src/perl/common/Makefile.PL.in b/src/perl/common/Makefile.PL.in index 84a80403..70b1d258 100644 --- a/src/perl/common/Makefile.PL.in +++ b/src/perl/common/Makefile.PL.in @@ -1,4 +1,4 @@ -use ExtUtils::MakeMaker;our $AM_DEFAULT_VERBOSITY='@AM_DEFAULT_VERBOSITY@';require "../Makefile_silent.pm"; +use ExtUtils::MakeMaker;our $AM_DEFAULT_VERBOSITY='@AM_DEFAULT_VERBOSITY@';require "@top_srcdir@/src/perl/Makefile_silent.pm"; WriteMakefile('NAME' => 'Irssi', 'LIBS' => '', -- cgit v1.2.3