diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-07-27 16:52:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-27 16:52:48 -0500 |
commit | 901bb7bb0b12c62fda9b8211825e0f559947812a (patch) | |
tree | 3e207cead6d3c46c4a4f524f7b6f3bcc3c7cca35 | |
parent | 3afa150cd8ef9f1d370ed425399aa0e1f42b339e (diff) | |
parent | d302ab876511fc66200a8cdb8b8afd80a339255f (diff) | |
download | servo-901bb7bb0b12c62fda9b8211825e0f559947812a.tar.gz servo-901bb7bb0b12c62fda9b8211825e0f559947812a.zip |
Auto merge of #12627 - metajack:win7-manifest, r=jdm
Fix missing namespace in Windows manifest
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [ ] These changes fix #__ (github issue number if applicable).
<!-- Either: -->
- [ ] There are tests for these changes OR
- [x] These changes do not require tests because they must be manually tested
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
The <compatibility> tag must be in the right namespace, or Windows 7
throws an error.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12627)
<!-- Reviewable:end -->
-rw-r--r-- | components/servo/servo.exe.manifest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/servo/servo.exe.manifest b/components/servo/servo.exe.manifest index 3748cdaca40..198d8d51709 100644 --- a/components/servo/servo.exe.manifest +++ b/components/servo/servo.exe.manifest @@ -6,7 +6,7 @@ name="servo.Servo" version="0.1.0.0"/> - <compatibility> + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> <application> <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> <!-- Windows 7 --> <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> <!-- Windows 8 --> |