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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2018-05-22 17:09:12 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-05-22 17:09:12 +0300
commit7f347cfc10fab238dbfcba30624aa082ba070fc8 (patch)
treebee5b293fb287e9dedd89ccb192f6c926979c310 /packaging
parent9cc1ddee72ab81c56b941bc9b34a920d6cf433a1 (diff)
[packaging] Ignore Mac path in MSBuild .targets file during check
It contains this fragment: ``` <TargetFrameworkFallbackSearchPaths Condition="$([MSBuild]::IsOSPlatform('osx'))">$(TargetFrameworkFallbackSearchPaths);/Library/Frameworks/Mono.framework/External/xbuild-frameworks</TargetFrameworkFallbackSearchPaths> ```
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/Windows/defs/managed-components2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/Windows/defs/managed-components b/packaging/Windows/defs/managed-components
index acfa9021887..7e1676ad46a 100755
--- a/packaging/Windows/defs/managed-components
+++ b/packaging/Windows/defs/managed-components
@@ -147,7 +147,7 @@ install()
done
# make sure we didn't miss any files with Mac paths
- if grep -R 'Mono\.framework' . --exclude=xbuild.1 --exclude=MSBuild.dll.config --exclude=macpack.exe; then
+ if grep -R 'Mono\.framework' . --exclude=xbuild.1 --exclude=MSBuild.dll.config --exclude=Microsoft.Common.Mono.Before.targets --exclude=macpack.exe; then
echo "Found Mac paths in files, please make sure they're fixed."
exit 1
fi