Change 14794 by ams@lustre on 2002/02/20 16:41:56
Subject: [PATCH] perl/Makefile.SH -- care with question mark
From: [EMAIL PROTECTED]
Date: Wed, 20 Feb 02 12:21 est
Message-Id: <[EMAIL PROTECTED]>
Affected files ...
.... //depot/perl/Makefile.SH#228 edit
Differences ...
==== //depot/perl/Makefile.SH#228 (text) ====
Index: perl/Makefile.SH
--- perl/Makefile.SH.~1~ Wed Feb 20 09:45:05 2002
+++ perl/Makefile.SH Wed Feb 20 09:45:05 2002
@@ -912,8 +912,12 @@
$(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
done
+# Some systems do not support "?", so keep these files separate.
_cleaner2:
- rm -f core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core
t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests .?*.c so_locations
$(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
+ -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
+ rm -f core *perl.core t/core t/*perl.core
+ rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
+ rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
rm -rf $(addedbyconf)
rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
rm -f $(private)
End of Patch.