diff options
author | Timo Sirainen <cras@irssi.org> | 2000-07-09 12:33:33 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-07-09 12:33:33 +0000 |
commit | a055127cf13f2fee8e408e7fa7df7fb67f11be9d (patch) | |
tree | ba73926652befaf4d5988e5b2f1379f176361c8f /src | |
parent | 0fcb26a9553c70d48b7d469cb616da034acafde6 (diff) | |
download | irssi-a055127cf13f2fee8e408e7fa7df7fb67f11be9d.zip |
--enable-perl[=libdir] to configure - you can specify what directory to
install the perl libraries.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@439 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r-- | src/perl/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/Makefile.am b/src/perl/Makefile.am index 2e527e70..9f9cc2f9 100644 --- a/src/perl/Makefile.am +++ b/src/perl/Makefile.am @@ -44,7 +44,7 @@ noinst_HEADERS = \ xs/module.h all-local: - cd xs && if [ ! -f Makefile ]; then $(perlpath) Makefile.PL; fi && $(MAKE) && cd .. + cd xs && if [ ! -f Makefile ]; then if [ "x$(PERL_LIB_DIR)" = "x" ]; then $(perlpath) Makefile.PL; else $(perlpath) Makefile.PL LIB=$(PERL_LIB_DIR); fi; fi && $(MAKE) && cd .. install-exec-local: cd xs && make install && cd .. |