Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 609ab57

Browse files
author
Reini Urban
committed
various post-release win32 fixups
installperl, installhtml, appveyor
1 parent 0910a73 commit 609ab57

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ deploy_script:
4343
- cmd: >-
4444
if "%MSVC_VERSION%" == "10" exit /b
4545
nmake install CCTYPE=MSVC120 USE_NO_REGISTRY=define
46-
C:\cperl\usr\bin\cperlivp
46+
C:\cperl\bin\cperlivp
4747
7z a -y -sfx cperl-%APPVEYOR_REPO_TAG_NAME%-win%PLATFORM%.exe c:\cperl\
4848
del /s /f /q C:\cperl
4949

installperl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) {
261261
if ($Is_Cygwin) {
262262
$perldll = $libperl;
263263
} else {
264-
$perldll = 'perl5'.$Config{patchlevel}.'.'.$so;
264+
$perldll = ($Config{usecperl} ? 'c' : '') . 'perl5'.$Config{patchlevel}.'.'.$so;
265265
}
266266

267267
if ($dlsrc ne "dl_none.xs") {

win32/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,8 @@ Extensions_realclean:
11851185

11861186
#-------------------------------------------------------------------------------
11871187

1188-
doc: $(PERLEXE) ..\pod\perltoc.pod
1188+
doc:
1189+
$(PERLEXE) -f ..\pod\buildtoc -q
11891190
$(PERLEXE) ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
11901191
--podpath=pod:lib:utils --htmlroot="file://$(INST_HTML::=|)" \
11911192
--recurse

0 commit comments

Comments
 (0)