Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Hendrix <jhendrix@microsoft.com>2016-05-18 23:08:25 +0300
committerJoel Hendrix <jhendrix@microsoft.com>2016-05-18 23:08:25 +0300
commit6b36f8b9efa62d5f9c2bf4d90312e3ff77fa0b20 (patch)
tree655f51ad385314fa744fea372f513d5b9915edd0 /build.sh
parent21fd3b96ff8c470cb4f98c316821060c8ef25944 (diff)
Update build tools to pick up latest fixes.
The latest build tools no longer requires the build.sh script to provide the path to the version.c file so removed it.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 4abd4596d1..08d7741b96 100755
--- a/build.sh
+++ b/build.sh
@@ -89,7 +89,7 @@ prepare_native_build()
__versionSourceFile=$__scriptpath/bin/obj/version.c
if [ -f "${__versionSourceFile}" ]; then __generateversionsource=false; fi
if [ $__generateversionsource == true ]; then
- $__scriptpath/Tools/corerun $__scriptpath/Tools/MSBuild.exe "$__scriptpath/build.proj" /t:GenerateVersionSourceFile /p:NativeVersionSourceFile=$__scriptpath/bin/obj/version.c /p:GenerateVersionSourceFile=true /v:minimal
+ $__scriptpath/Tools/corerun $__scriptpath/Tools/MSBuild.exe "$__scriptpath/build.proj" /t:GenerateVersionSourceFile /p:GenerateVersionSourceFile=true /v:minimal
else
__versionSourceLine="static char sccsid[] __attribute__((used)) = \"@(#)No version information produced\";"
echo $__versionSourceLine > $__versionSourceFile