[svn:parrot] r44130 - in trunk/config: auto gen/makefiles
dukeleto at svn.parrot.org
dukeleto at svn.parrot.org
Thu Feb 18 08:48:12 UTC 2010
Author: dukeleto
Date: Thu Feb 18 08:48:11 2010
New Revision: 44130
URL: https://trac.parrot.org/parrot/changeset/44130
Log:
[build][TT#1463] Don't use the environment variable PERLDOC, since it is used by perldoc
Modified:
trunk/config/auto/perldoc.pm
trunk/config/gen/makefiles/docs.in
Modified: trunk/config/auto/perldoc.pm
==============================================================================
--- trunk/config/auto/perldoc.pm Thu Feb 18 03:30:40 2010 (r44129)
+++ trunk/config/auto/perldoc.pm Thu Feb 18 08:48:11 2010 (r44130)
@@ -68,7 +68,7 @@
if ( $new_perldoc ) {
$TEMP_pod_build .= <<"END"
ops$slash$pod: ..${slash}src${slash}ops${slash}$ops
-\t\$(PERLDOC) -ud ops${slash}$pod ..${slash}src${slash}ops${slash}$ops
+\t\$(PERLDOC_BIN) -ud ops${slash}$pod ..${slash}src${slash}ops${slash}$ops
\t\$(CHMOD) 0644 ops${slash}$pod
END
@@ -76,7 +76,7 @@
else {
$TEMP_pod_build .= <<"END"
ops$slash$pod: ..${slash}src${slash}ops${slash}$ops
-\t\$(PERLDOC) -u ..${slash}ops${slash}$ops > ops${slash}$pod
+\t\$(PERLDOC_BIN) -u ..${slash}ops${slash}$ops > ops${slash}$pod
\t\$(CHMOD) 0644 ..${slash}ops${slash}$pod
END
Modified: trunk/config/gen/makefiles/docs.in
==============================================================================
--- trunk/config/gen/makefiles/docs.in Thu Feb 18 03:30:40 2010 (r44129)
+++ trunk/config/gen/makefiles/docs.in Thu Feb 18 08:48:11 2010 (r44130)
@@ -8,7 +8,7 @@
TOUCH = @touch@
RM_F = @rm_f@
RM_RF = @rm_rf@
-PERLDOC = @perldoc@
+PERLDOC_BIN = @perldoc@
VERSION = @VERSION@@DEVEL@
# long list of .pod files
@@ -41,8 +41,8 @@
$(TOUCH) doc-prep
packfile-c.pod: ../src/packfile.c
-#IF(new_perldoc): $(PERLDOC) -ud packfile-c.pod ../src/packfile.c
-#ELSE: $(PERLDOC) -u ../src/packfile.c > packfile-c.pod
+#IF(new_perldoc): $(PERLDOC_BIN) -ud packfile-c.pod ../src/packfile.c
+#ELSE: $(PERLDOC_BIN) -u ../src/packfile.c > packfile-c.pod
clean:
$(RM_F) packfile-c.pod $(POD) doc-prep
More information about the parrot-commits
mailing list