diff options
author | th1722 <20001722@ymail.ne.jp> | 2023-01-11 17:28:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 17:28:57 (GMT) |
commit | 61f12b8ff7073064040ff0e6220150408d24829b (patch) | |
tree | 80c96e08cf6efbba0a6357aa780b7db4da38e851 | |
parent | 5ff029f7a30705ac00a1010d3d191edcd011f160 (diff) | |
download | cpython-61f12b8ff7073064040ff0e6220150408d24829b.zip cpython-61f12b8ff7073064040ff0e6220150408d24829b.tar.gz cpython-61f12b8ff7073064040ff0e6220150408d24829b.tar.bz2 |
Ensure some build files include a newline at to avoid warnings (GH-100946)
-rw-r--r-- | PCbuild/_ssl.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/openssl.props | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/_ssl.vcxproj b/PCbuild/_ssl.vcxproj index 4907f49..226ff50 100644 --- a/PCbuild/_ssl.vcxproj +++ b/PCbuild/_ssl.vcxproj @@ -119,4 +119,4 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> -</Project>
\ No newline at end of file +</Project> diff --git a/PCbuild/openssl.props b/PCbuild/openssl.props index 6081d3c..7071bb5 100644 --- a/PCbuild/openssl.props +++ b/PCbuild/openssl.props @@ -31,4 +31,4 @@ <Target Name="_CleanSSLDLL" Condition="$(SkipCopySSLDLL) == ''" BeforeTargets="Clean"> <Delete Files="@(_SSLDLL->'$(OutDir)%(Filename)%(Extension)')" TreatErrorsAsWarnings="true" /> </Target> -</Project>
\ No newline at end of file +</Project> |