Update sysdefdowngrade.xsl to preserve v3.0.0 proFile and qmakeArgs during 2.0.1 transform.
--- a/sysdeftools/sysdefdowngrade.xsl Wed Apr 14 11:27:36 2010 +0100
+++ b/sysdeftools/sysdefdowngrade.xsl Thu Apr 15 16:16:50 2010 +0100
@@ -217,6 +217,11 @@
<xsl:with-param name="path" select="$path"/>
</xsl:apply-templates>
<xsl:copy-of select="@filter|@root[not(contains($root,concat(' ',.,'=')))]|@version|@prebuilt|@priority"/>
+ <xsl:for-each select="@*[name()='qt:proFile' or name()='qt:qmakeArgs']">
+ <xsl:attribute name="{local-name()}">
+ <xsl:value-of select="."/>
+ </xsl:attribute>
+ </xsl:for-each>
</unit>
</xsl:template>