1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 09:52:16 -05:00

Fix "-set-version" build target that checks if the changelog is up-to-date

Adjust path to the master changelog file.
This commit is contained in:
cketti 2013-07-23 20:53:47 +02:00
parent a779e0e6f8
commit 55b10948c4

View File

@ -140,7 +140,7 @@
<echo>Setting version to ${version-name}</echo>
<exec executable="perl" failonerror="true">
<arg line="-0 -ne '/\x3Crelease version=\x22${version-name}\x22/ or die qq/No changelog for ${version-name}\n/' res/raw/changelog.xml" />
<arg line="-0 -ne '/\x3Crelease version=\x22${version-name}\x22/ or die qq/No changelog for ${version-name}\n/' res/xml/changelog_master.xml" />
</exec>
<replace file="AndroidManifest.xml"
token="android:versionName=&quot;${current-version-name}&quot;"
@ -333,7 +333,7 @@
</else>
</if.contrib>
</target>
<target name="init" depends="-update-abs, -update-ptr, -update-cl, -update-hcp"
description="Initialize environment for building" />