André Hentschel : tools: Preserve ordinal when updating specfiles.

Alexandre Julliard julliard at winehq.org
Tue Jun 28 17:25:18 CDT 2011


Module: wine
Branch: master
Commit: ed3a2765915e5bead74585285532ff880e5bb147
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ed3a2765915e5bead74585285532ff880e5bb147

Author: André Hentschel <nerv at dawncrow.de>
Date:   Thu Jun 23 00:02:30 2011 +0200

tools: Preserve ordinal when updating specfiles.

---

 tools/make_specfiles |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/make_specfiles b/tools/make_specfiles
index 9e9b8e8..ff21ca8 100755
--- a/tools/make_specfiles
+++ b/tools/make_specfiles
@@ -214,7 +214,7 @@ sub update_spec_file($)
         {
             my $callconv = $parent{callconv} ne "stub" ? $parent{callconv} :
                            $parent{spec} =~ /msvc/ ? "cdecl" : "stdcall";  # hack
-            $_ = sprintf "@ %s %s%s", $callconv, $flags, $func;
+            $_ = sprintf "$descr{ordinal} %s %s%s", $callconv, $flags, $func;
 
             if ($parent{target} =~ /$group_head\./)  # use the same forward as parent if possible
             {
@@ -227,7 +227,7 @@ sub update_spec_file($)
         }
         else
         {
-            $_ = sprintf "@ stub %s%s", $flags, $func;
+            $_ = sprintf "$descr{ordinal} stub %s%s", $flags, $func;
         }
         $_ .= $descr{comment} || "";
 




More information about the wine-cvs mailing list