aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/__91__PATCH__93___Use_correct_perl_when_running_make.html
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2008-06-02 11:37:45 -0400
committerJoey Hess <joey@kitenet.net>2008-06-02 11:37:45 -0400
commite76c997e863d79141580346174e402b2aea11834 (patch)
tree269dfd9e8009e14d50575d6bf04a569bbf60abab /doc/bugs/__91__PATCH__93___Use_correct_perl_when_running_make.html
parentcd5daa21913d75d156753acb1da876e89340a459 (diff)
downloadikiwiki-e76c997e863d79141580346174e402b2aea11834.tar
ikiwiki-e76c997e863d79141580346174e402b2aea11834.tar.gz
web commit by stmpeters
Diffstat (limited to 'doc/bugs/__91__PATCH__93___Use_correct_perl_when_running_make.html')
-rw-r--r--doc/bugs/__91__PATCH__93___Use_correct_perl_when_running_make.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/bugs/__91__PATCH__93___Use_correct_perl_when_running_make.html b/doc/bugs/__91__PATCH__93___Use_correct_perl_when_running_make.html
new file mode 100644
index 000000000..781d29372
--- /dev/null
+++ b/doc/bugs/__91__PATCH__93___Use_correct_perl_when_running_make.html
@@ -0,0 +1,15 @@
+If the Perl used to run Makefile.PL is not first on the PATH, it will not be the one used when make is run. The patch below fixes this.
+
+<pre>
+--- Makefile.PL.orig 2008-06-02 10:33:41.000000000 -0500
++++ Makefile.PL 2008-06-02 10:34:00.000000000 -0500
+@@ -31,7 +31,7 @@
+ chmod +x ikiwiki.out
+
+ extra_build: ikiwiki.out
+- perl -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -setup docwiki.setup -refresh
++ $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -setup docwiki.setup -refresh
+ ./mdwn2man ikiwiki 1 doc/usage.mdwn > ikiwiki.man
+ ./mdwn2man ikiwiki-mass-rebuild 8 doc/ikiwiki-mass-rebuild.mdwn > ikiwiki-mass-rebuild.man
+ ./mdwn2man ikiwiki-makerepo 1 doc/ikiwiki-makerepo.mdwn > ikiwiki-makerepo.man
+</pre>