CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 29 Jul 2025 10:57:24 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.482569, exclusion.robots;dur=0.022428, exclusion.robots.policy;dur=0.013757, esindex;dur=0.009913, cdx.remote;dur=4281.165125, LoadShardBlock;dur=229.489296, PetaboxLoader3.datanode;dur=48.358904, PetaboxLoader3.resolve;dur=33.793133
x-app-server: wwwb-app201
x-ts: 302
x-tr: 4544
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: SERVER=wwwb-app201; 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: Tue, 29 Jul 2025 10:57:26 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=7.263040, exclusion.robots;dur=0.034716, exclusion.robots.policy;dur=0.022219, esindex;dur=0.014184, cdx.remote;dur=828.123964, LoadShardBlock;dur=221.120456, PetaboxLoader3.resolve;dur=428.416482, PetaboxLoader3.datanode;dur=70.743293, load_resource;dur=335.445713
x-app-server: wwwb-app201
x-ts: 200
x-tr: 1460
server-timing: TR;dur=0,Tw;dur=278,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.