[svn:parrot] r44963 - trunk/config/auto

petdance at svn.parrot.org petdance at svn.parrot.org
Tue Mar 16 18:42:54 UTC 2010


Author: petdance
Date: Tue Mar 16 18:42:50 2010
New Revision: 44963
URL: https://trac.parrot.org/parrot/changeset/44963

Log:
removed quoting on filenames, using the qw() syntax instead

Modified:
   trunk/config/auto/warnings.pm

Modified: trunk/config/auto/warnings.pm
==============================================================================
--- trunk/config/auto/warnings.pm	Tue Mar 16 16:04:31 2010	(r44962)
+++ trunk/config/auto/warnings.pm	Tue Mar 16 18:42:50 2010	(r44963)
@@ -193,29 +193,29 @@
     $gpp->{'cage'} = $gcc_or_gpp_cage;
 
     $gcc->{'todo'} = $gpp->{'todo'} = {
-        '-Wformat-nonliteral' => [
-            'src/spf_render.c',
-            'compilers/imcc/optimizer.c',
-        ],
-        '-Wstrict-prototypes' => [
-            'src/nci/extra_thunks.c',
-            'src/extra_nci_thunks.c',
-        ],
+        '-Wformat-nonliteral' => [ qw(
+            src/spf_render.c
+            compilers/imcc/optimizer.c
+        ) ],
+        '-Wstrict-prototypes' => [ qw(
+            src/nci/extra_thunks.c
+            src/extra_nci_thunks.c
+        ) ],
     };
 
     $gcc->{'never'} = $gpp->{'never'} = {
-        '-Wformat-nonliteral' => [
-            'compilers/imcc/imclexer.c',
-        ],
-        '-Wswitch-default' => [
-            'compilers/imcc/imclexer.c',
-        ],
-        '-Wcast-qual' => [
-            'compilers/imcc/imcparser.c',
-        ],
-        '-Wlogical-op' => [
-            'compilers/imcc/imcparser.c',
-        ],
+        '-Wformat-nonliteral' => [ qw(
+            compilers/imcc/imclexer.c
+        ) ],
+        '-Wswitch-default' => [ qw(
+            compilers/imcc/imclexer.c
+        ) ],
+        '-Wcast-qual' => [ qw(
+            compilers/imcc/imcparser.c
+        ) ],
+        '-Wlogical-op' => [ qw(
+            compilers/imcc/imcparser.c
+        ) ],
     };
 
     $icc->{'basic'} = [ qw(


More information about the parrot-commits mailing list