Author: rafl
Date: Sat Nov  5 09:20:27 2005
New Revision: 9798

Modified:
   /   (props changed)
   trunk/config/gen/makefiles/docs.in
Log:
 [EMAIL PROTECTED]:  rafl | 2005-11-05 18:20:14 +0100
 * Make a conditional statement in config/gen/makefiles/docs.in portable on 
Win32.


Modified: trunk/config/gen/makefiles/docs.in
==============================================================================
--- trunk/config/gen/makefiles/docs.in  (original)
+++ trunk/config/gen/makefiles/docs.in  Sat Nov  5 09:20:27 2005
@@ -9,7 +9,6 @@ PERL = ${perl}
 RM_F = ${rm_f}
 # Make directory; do not die if dir exists.
 MKDIR = $(PERL) -e ${PQ}-d or mkdir $$_,0777 or die foreach @ARGV${PQ}
-NEW_PERLDOC = ${new_perldoc}
 
 # long list of .pod files
 POD = ${pod}
@@ -51,8 +50,5 @@ html-clean:
        $(PERL) -I../lib -MParrot::Distribution -e 
"Parrot::Distribution->new->delete_html_docs"
 
 ops${slash}%.pod: ..${slash}ops${slash}%.ops
-ifeq ($(NEW_PERLDOC), 1)
-       perldoc -ud $@ $<
-else
-       perldoc -u $< > $@
-endif
+#CONDITIONED_LINE(new_perldoc):        perldoc -ud $@ $<
+#INVERSE_CONDITIONED_LINE(new_perldoc):        perldoc -u $< > $@

Reply via email to