[PATCH 2 of 2] wix: rename id of locale directory

Adrian Buehlmann adrian at cadifra.com
Sat Mar 27 12:47:06 CDT 2010


# HG changeset patch
# User Adrian Buehlmann <adrian at cadifra.com>
# Date 1269707729 -3600
# Node ID efc666e7770872661495d6b9b0ddef00ff0c51bd
# Parent  968b91e03b35bc47cc5b083f834a150cb7033112
wix: rename id of locale directory

so it can be referred to in dependent packages by using a
meaningful name, instead of a magic tool-generated id.

diff --git a/contrib/wix/locale.wxs b/contrib/wix/locale.wxs
--- a/contrib/wix/locale.wxs
+++ b/contrib/wix/locale.wxs
@@ -13,13 +13,13 @@
 
     <Fragment>
         <DirectoryRef Id="INSTALLDIR">
-            <Directory Id="dirA42EA32F4A238F2C40AD5ACF4C831152" Name="locale" />
+            <Directory Id="hglocaledir" Name="locale" />
         </DirectoryRef>
     </Fragment>
 
     <?foreach LOC in $(var.hglocales) ?>
         <Fragment>
-            <DirectoryRef Id="dirA42EA32F4A238F2C40AD5ACF4C831152">
+            <DirectoryRef Id="hglocaledir">
                 <Directory Id="hg.locale.$(var.LOC)" Name="$(var.LOC)">
                     <Directory Id="hg.locale.$(var.LOC).LC_MESSAGES" Name="LC_MESSAGES">
                         <Component Id="hg.locale.$(var.LOC)" Guid="*">


More information about the Mercurial-devel mailing list