Stop claiming we ship a file called -e
Florian Ragwitz [Sat, 28 May 2011 01:29:40 +0000 (03:29 +0200)]
There's no need to interpolate escape sequences in that echo call either.

perl/Makefile.PL

index ecfca1a..cacc67d 100644 (file)
@@ -119,7 +119,7 @@ WriteMakefile(
             (map {"libfcgi/$_"} @dist2),
             map {"include/$_"} @dist3).' $(DISTVNAME);'.
                 '$(CP) MANIFEST MANIFEST.old;'.
-                'echo -e '. join('\\\n',@dist1,@dist2,@dist3) .
+                'echo '. join('\\\n',@dist1,@dist2,@dist3) .
                 '>> $(DISTVNAME)/MANIFEST',
                   'POSTOP' => 
                 '$(MV) MANIFEST.old MANIFEST',