Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,9 @@
# The OSS fuzz files are binary
/ext/date/tests/ossfuzz*.txt binary

# "Win only" text files that should have CRLF EOL
*.bat -text eol=crlf
*.ps1 -text eol=crlf

# Vendored libraries
/ext/dom/lexbor/lexbor linguist-vendored
20 changes: 10 additions & 10 deletions win32/build/phpize.bat
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@echo off
SET PHP_BUILDCONF_PATH=%~dp0
cscript /nologo /e:jscript %PHP_BUILDCONF_PATH%\script\phpize.js %*
IF NOT EXIST configure.bat (
echo Error generating configure script, configure script was not copied
exit /b 3
) ELSE (
echo Now run 'configure --help'
)
SET PHP_BUILDCONF_PATH=
@echo off
SET PHP_BUILDCONF_PATH=%~dp0
cscript /nologo /e:jscript %PHP_BUILDCONF_PATH%\script\phpize.js %*
IF NOT EXIST configure.bat (
echo Error generating configure script, configure script was not copied
exit /b 3
) ELSE (
echo Now run 'configure --help'
)
SET PHP_BUILDCONF_PATH=
Loading