CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 30 Jul 2025 07:11:04 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20230130014402
location: https://web.archive.org/web/20230130014402/https://perl5.git.perl.org/perl5.git/commitdiff/HEAD
server-timing: captures_list;dur=0.667544, exclusion.robots;dur=0.023386, exclusion.robots.policy;dur=0.011060, esindex;dur=0.012120, cdx.remote;dur=154.791197, LoadShardBlock;dur=357.680086, PetaboxLoader3.datanode;dur=47.904329, PetaboxLoader3.resolve;dur=254.565068
x-app-server: wwwb-app214
x-ts: 302
x-tr: 540
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app214; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 30 Jul 2025 07:11:07 GMT
content-type: application/xhtml+xml; charset=utf-8
x-archive-orig-date: Mon, 30 Jan 2023 01:44:01 GMT
x-archive-orig-server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips
x-archive-orig-keep-alive: timeout=5, max=100
x-archive-orig-connection: Keep-Alive
x-archive-orig-x-crawler-transfer-encoding: chunked
x-archive-orig-content-length: 9956
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 30 Jan 2023 01:44:02 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 17 Jan 2021 10:11:08 GMT", ; rel="prev memento"; datetime="Wed, 26 Jan 2022 21:26:58 GMT", ; rel="memento"; datetime="Mon, 30 Jan 2023 01:44:02 GMT", ; rel="last memento"; datetime="Mon, 30 Jan 2023 01:44:02 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: CC-MAIN-2023-06-1674764499790.41-0006/CC-MAIN-20230130003215-20230130033215-00120.warc.gz
server-timing: captures_list;dur=0.400573, exclusion.robots;dur=0.013249, exclusion.robots.policy;dur=0.006944, esindex;dur=0.008741, cdx.remote;dur=1282.705287, LoadShardBlock;dur=428.084387, PetaboxLoader3.datanode;dur=93.037121, PetaboxLoader3.resolve;dur=628.514506, load_resource;dur=354.821946
x-app-server: wwwb-app214
x-ts: 200
x-tr: 2116
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
perl5.git.perl.org Git - perl5.git/commitdiff
This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fc931ec)
raw | patch | inline | side by side (parent: fc931ec)
author | Yves Orton <demerphq@gmail.com> | |
Sun, 29 Jan 2023 15:15:46 +0000 (16:15 +0100) | ||
committer | Yves Orton <demerphq@gmail.com> | |
Mon, 30 Jan 2023 00:42:23 +0000 (08:42 +0800) |
All of the other rename commands in win32/Makefile and win32/GNUmakefile
are guarded by a del statement. This does the equivalent for the
rename command that creates config.sh.
Fixes #20749.
are guarded by a del statement. This does the equivalent for the
rename command that creates config.sh.
Fixes #20749.
win32/GNUmakefile | patch | blob | blame | history | |
win32/Makefile | patch | blob | blame | history |
diff --git a/win32/GNUmakefile b/win32/GNUmakefile
--- a/win32/GNUmakefile
+++ b/win32/GNUmakefile
..\config.sh : $(CFGSH_TMPL) config_sh.PL FindExt.pm $(HAVEMINIPERL)
$(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh.tmp
+ if exist ..\config.sh del /f ..\config.sh
rename ..\config.sh.tmp config.sh
# This target is for when changes to the main config.sh happen.
diff --git a/win32/Makefile b/win32/Makefile
--- a/win32/Makefile
+++ b/win32/Makefile
..\config.sh : $(CFGSH_TMPL) config_sh.PL FindExt.pm $(MINIPERL)
$(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh.tmp
+ if exist ..\config.sh del /f ..\config.sh
rename ..\config.sh.tmp config.sh
# This target is for when changes to the main config.sh happen.