# New Ticket Created by  Dennis Rieks 
# Please include the string:  [perl #30326]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=30326 >


Hi,

nmake don't like comments after tabs...

target:
<tab># comment

I have changed this lines in config/gen/makefiles/languages.in into
taget:
#comment


Dennis

--
Dennis Rieks
[EMAIL PROTECTED]



--- parrot.current/config/gen/makefiles/languages.in	2004-06-15 00:12:34.000000000 +0200
+++ parrot.drieks/config/gen/makefiles/languages.in	2004-06-17 02:25:34.000000000 +0200
@@ -49,11 +49,11 @@
 
 BASIC : BASIC.dummy
 BASIC.dummy:
-	# don't know how to build
+# don't know how to build
 BASIC.test:
-	# Don't know how to test
+# Don't know how to test
 BASIC.clean:
-	# Don't know how to clean
+# Don't know how to clean
 
 befunge : befunge.dummy
 befunge.dummy:
@@ -77,19 +77,19 @@
 cola.test:
 	$(MAKE_C) cola test
 cola.clean:
-	# don't clean cola, as files in MANIFEST are removed
+# don't clean cola, as files in MANIFEST are removed
 
 forth : forth.dummy
 forth.dummy:
-	# Nothing to do for forth
+# Nothing to do for forth
 forth.test:
-	# Looks like there are no tests for forth
+# Looks like there are no tests for forth
 forth.clean:
-	# no Makefile
+# no Makefile
 
 jako: jako.dummy
 jako.dummy:
-	# don't make jako, as tests are executed by default
+# don't make jako, as tests are executed by default
 jako.test:
 	$(MAKE_C) jako test
 jako.clean:
@@ -105,8 +105,8 @@
 
 miniperl : miniperl.dummy
 miniperl.dummy:
-	# missing t/harness
-	# $(MAKE_C) miniperl
+# missing t/harness
+# $(MAKE_C) miniperl
 miniperl.test:
 	$(MAKE_C) miniperl test
 miniperl.clean:
@@ -124,8 +124,8 @@
 parrot_compiler.dummy:
 	$(MAKE_C) parrot_compiler
 parrot_compiler.test:
-	# no target test in Makefile
-	# (MAKE_C) parrot_compiler test
+# no target test in Makefile
+# (MAKE_C) parrot_compiler test
 parrot_compiler.clean:
 	$(MAKE_C) parrot_compiler clean
 
@@ -143,7 +143,7 @@
 regex.test :
 	$(MAKE_C) regex test
 regex.clean :
-	# No target clean for regex 
+# No target clean for regex
 
 scheme: scheme.dummy
 scheme.dummy:

Reply via email to