diff options
author | Timo Sirainen <cras@irssi.org> | 2001-10-14 15:19:57 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-10-14 15:19:57 +0000 |
commit | d92ad715b452d9cb16908ad06e53cd96e9266a69 (patch) | |
tree | b54a3550aa293565c7fcab1e466432863f604877 | |
parent | a1d3cf9932d196a03f03dc47ed59f202e8b5bd3c (diff) | |
download | irssi-d92ad715b452d9cb16908ad06e53cd96e9266a69.zip |
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
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
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, |