diff options
author | Brad King <brad.king@kitware.com> | 2016-07-06 13:35:19 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-07-06 13:35:19 (GMT) |
commit | 0219743a01c1c89c5b67d18c1094731c4b609ffa (patch) | |
tree | c6ade65cfa145225e231ca91c58cba856caec758 /Source/CPack | |
parent | 06af626ef2ffb6a8c6b4b91bd372849798426b76 (diff) | |
parent | 7a30fa1a414faeb4ec83d894428a335f0b481de3 (diff) | |
download | CMake-0219743a01c1c89c5b67d18c1094731c4b609ffa.zip CMake-0219743a01c1c89c5b67d18c1094731c4b609ffa.tar.gz CMake-0219743a01c1c89c5b67d18c1094731c4b609ffa.tar.bz2 |
Merge topic 'cpack-ifw-fix-repo-attributes'
7a30fa1a CPackIFW: Fix attributes for Promoting Updates repository replacement
Diffstat (limited to 'Source/CPack')
-rw-r--r-- | Source/CPack/IFW/cmCPackIFWRepository.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/IFW/cmCPackIFWRepository.cxx b/Source/CPack/IFW/cmCPackIFWRepository.cxx index ee6d5e5..fcb1c77 100644 --- a/Source/CPack/IFW/cmCPackIFWRepository.cxx +++ b/Source/CPack/IFW/cmCPackIFWRepository.cxx @@ -299,8 +299,8 @@ void cmCPackIFWRepository::WriteRepositoryUpdate(cmXMLWriter& xout) if (Update == Add || Update == Remove) { xout.Attribute("url", Url); } else if (Update == Replace) { - xout.Attribute("oldurl", OldUrl); - xout.Attribute("newurl", NewUrl); + xout.Attribute("oldUrl", OldUrl); + xout.Attribute("newUrl", NewUrl); } // Enabled if (!Enabled.empty()) { |