diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2024-06-02 19:20:05 -0600 |
---|---|---|
committer | David Faure <faure@kde.org> | 2024-06-16 10:26:09 +0000 |
commit | a28626acf325bf9b92b0dd60bc914fbde883ea79 (patch) | |
tree | 7e0f882f7e00f773e68ef0e0d2b9c6cc81f3f773 /data | |
parent | b8ba60d230607963d96aa9b83a57cff91fe4f5e5 (diff) |
Recognize *.lib as application/x-archive
Putting the *.lib glob in application/vnd.microsoft.portable-executable
was a mistake: Windows actually uses the same container format as Unix
for static libraries.
Diffstat (limited to 'data')
-rw-r--r-- | data/freedesktop.org.xml.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/freedesktop.org.xml.in b/data/freedesktop.org.xml.in index e719a97..2c6b6f2 100644 --- a/data/freedesktop.org.xml.in +++ b/data/freedesktop.org.xml.in @@ -1783,6 +1783,7 @@ command to generate the output files. </magic> <glob pattern="*.a"/> <glob pattern="*.ar"/> + <glob pattern="*.lib"/> </mime-type> <mime-type type="application/x-arj"> <comment>ARJ archive</comment> @@ -3602,7 +3603,6 @@ command to generate the output files. <glob pattern="*.efi"/> <glob pattern="*.ocx"/> <glob pattern="*.sys"/> - <glob pattern="*.lib"/> </mime-type> <mime-type type="application/x-ms-pdb"> <comment>Windows program database</comment> |