[rt-devel] warnings during make install
Vivek Khera
khera at kcilink.com
Mon Jul 23 17:05:34 EDT 2001
I've got perl 5.005_03 (stock FreeBSD 4.3). During install, I get
this warning, and then the man pages are installed in the
/usr/local/lib/perl5/5.00503/man/man3 directory.
'INSTALLSITEMAN1DIR' is not a known MakeMaker parameter name.
'INSTALLSITEMAN3DIR' is not a known MakeMaker parameter name.
And indeed, the Make Maker man page doesnt' mention these as existing.
Patch to fix rt-2.0.1:
--- #Makefile~ Mon Jul 23 17:03:13 2001
+++ Makefile Mon Jul 23 17:03:13 2001
@@ -254,8 +254,8 @@
chmod -R $(RT_READABLE_DIR_MODE) $(RT_LIB_PATH)
( cd ./lib; \
$(PERL) Makefile.PL INSTALLSITELIB=$(RT_LIB_PATH) \
- INSTALLSITEMAN1DIR=$(RT_MAN_PATH)/man1 \
- INSTALLSITEMAN3DIR=$(RT_MAN_PATH)/man3 \
+ INSTALLMAN1DIR=$(RT_MAN_PATH)/man1 \
+ INSTALLMAN3DIR=$(RT_MAN_PATH)/man3 \
&& make \
&& make test \
&& $(PERL) -p -i -e " s'!!RT_VERSION!!'$(RT_VERSION)'g;" blib/lib/RT.pm ;\
More information about the Rt-devel
mailing list