diff options
author | Jack Moffitt <jack@metajack.im> | 2016-07-27 15:16:23 -0600 |
---|---|---|
committer | Jack Moffitt <jack@metajack.im> | 2016-07-27 15:16:23 -0600 |
commit | d302ab876511fc66200a8cdb8b8afd80a339255f (patch) | |
tree | 3e207cead6d3c46c4a4f524f7b6f3bcc3c7cca35 /components | |
parent | 3afa150cd8ef9f1d370ed425399aa0e1f42b339e (diff) | |
download | servo-d302ab876511fc66200a8cdb8b8afd80a339255f.tar.gz servo-d302ab876511fc66200a8cdb8b8afd80a339255f.zip |
Fix missing namespace in Windows manifest
The <compatibility> tag must be in the right namespace, or Windows 7
throws an error.
Diffstat (limited to 'components')
-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 --> |