In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/7056a12db4432a1ce25fac6e2e79de6b02a9bf53?hp=4fa9266363598bc31684f549c2c8ce8c6664d137>

- Log -----------------------------------------------------------------
commit 7056a12db4432a1ce25fac6e2e79de6b02a9bf53
Author: Craig A. Berry <[email protected]>
Date:   Sat Mar 16 14:10:40 2019 -0500

    realclean unidatafiles on VMS the same way as elsewhere.
    
    We were deleting lib/unicore/*.pl, but with uni_keywords.pl there
    is now one non-generated .pl file in that directory.  Deleting it
    in realclean caused subsequent configure attempts in the same
    directory tree to fail.

-----------------------------------------------------------------------

Summary of changes:
 vms/descrip_mms.template | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/vms/descrip_mms.template b/vms/descrip_mms.template
index c4db86a158..b952d03570 100644
--- a/vms/descrip_mms.template
+++ b/vms/descrip_mms.template
@@ -275,6 +275,12 @@ CRTLOPTS =,$(CRTL)/Options
        $(CC) $(CFLAGS) $(MMS$SOURCE_NAME).c
 .endif
 
+# Unicode data files generated by mktables
+unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
+       lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
+       lib/unicore/UCD.pl lib/unicore/Name.pm \
+       lib/unicore/Heavy.pl lib/unicore/mktables.lst
+
 # Directories of Unicode data files generated by mktables
 unidatadirs = lib/unicore/To lib/unicore/lib
 
@@ -800,8 +806,7 @@ realclean : clean
        - If F$Search("config.h").nes."" Then Delete/NoConfirm/Log config.h;*
        - If F$Search("config.sh").nes."" Then Delete/NoConfirm/Log config.sh;*
        - $(MINIPERL) -e "use File::Path; rmtree(\@ARGV,1,0);" config
-       - If F$Search("[.lib.unicore...]*.pl").nes."" Then Delete/NoConfirm/Log 
[.lib.unicore...]*.pl;*
-       - If F$Search("[.lib.unicore]Properties.").nes."" Then 
Delete/NoConfirm/Log [.lib.unicore]Properties.;*
+       - $(MINIPERL) -e "use File::Path; rmtree(\@ARGV,1,0);" $(unidatafiles)
        - $(MINIPERL) -e "use File::Path; rmtree(\@ARGV,1,0);" $(unidatadirs)
        - If F$Search("Descrip.MMS").nes."" Then Delete/NoConfirm/Log 
Descrip.MMS;*
        - If F$Search("extra_pods.Com").nes."" Then Delete/NoConfirm/Log 
extra_pods.Com;*

-- 
Perl5 Master Repository

Reply via email to