You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2018/05/11 09:01:56 UTC

svn commit: r1831391 - /httpd/test/framework/trunk/Makefile.PL

Author: jorton
Date: Fri May 11 09:01:56 2018
New Revision: 1831391

URL: http://svn.apache.org/viewvc?rev=1831391&view=rev
Log:
Don't match emacs .#.*PL recovery files when generating scripts.

Modified:
    httpd/test/framework/trunk/Makefile.PL

Modified: httpd/test/framework/trunk/Makefile.PL
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/Makefile.PL?rev=1831391&r1=1831390&r2=1831391&view=diff
==============================================================================
--- httpd/test/framework/trunk/Makefile.PL (original)
+++ httpd/test/framework/trunk/Makefile.PL Fri May 11 09:01:56 2018
@@ -16,7 +16,7 @@ use File::Find qw(finddepth);
 my @scripts = ();
 
 finddepth(sub {
-    return unless /(.*?\.pl)\.PL$/;
+    return unless /^(?!.#)(.*?\.pl)\.PL$/;
     push @scripts, "$File::Find::dir/$1";
 }, '.');