From d92ad715b452d9cb16908ad06e53cd96e9266a69 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 14 Oct 2001 15:19:57 +0000 Subject: [PATCH] perl_prefix_note shouldn't be printed if --enable-perl-path was given. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1839 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- configure.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.in b/configure.in index 00e81a8d..f72ff699 100644 --- a/configure.in +++ b/configure.in @@ -115,9 +115,11 @@ AC_ARG_WITH(perl-lib, want_perl=no elif test "x$withval" = xsite; then want_perl=yes + perl_prefix_note=no PERL_MM_PARAMS="" elif test "x$withval" = xvendor; then want_perl=yes + perl_prefix_note=no if test -z "`$perlpath -v|grep '5\.0'`"; then PERL_MM_PARAMS="INSTALLDIRS=vendor" else @@ -126,6 +128,7 @@ AC_ARG_WITH(perl-lib, perl_library_dir="(vendor default - `$perlpath -e 'use Config; print $Config{archlib}'`)" else want_perl=yes + perl_prefix_note=no PERL_MM_PARAMS="INSTALLDIRS=perl LIB=$withval" PERL_USE_LIB="$withval" fi,