Alexandre Julliard : makefiles: Add tool dependencies for winegcc and winebuild.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Mar 28 09:12:36 CDT 2016


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Mar 28 12:27:32 2016 +0900

makefiles: Add tool dependencies for winegcc and winebuild.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 tools/makedep.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tools/makedep.c b/tools/makedep.c
index 98645db..9ad6e39 100644
--- a/tools/makedep.c
+++ b/tools/makedep.c
@@ -2683,6 +2683,8 @@ static struct strarray output_sources( const struct makefile *make )
         output_filenames_obj_dir( make, object_files );
         output_filenames_obj_dir( make, res_files );
         output_filenames( dep_libs );
+        output_filename( tools_path( make, "winebuild" ));
+        output_filename( tools_path( make, "winegcc" ));
         output( "\n" );
         output( "\t%s -o $@", tools_path( make, "winegcc" ));
         output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
@@ -2907,6 +2909,8 @@ static struct strarray output_sources( const struct makefile *make )
         output_filenames_obj_dir( make, object_files );
         output_filenames_obj_dir( make, res_files );
         output_filenames( dep_libs );
+        output_filename( tools_path( make, "winebuild" ));
+        output_filename( tools_path( make, "winegcc" ));
         output( "\n" );
 
         if (!make->disabled)
@@ -2929,6 +2933,8 @@ static struct strarray output_sources( const struct makefile *make )
             output_filenames_obj_dir( make, crossobj_files );
             output_filenames_obj_dir( make, res_files );
             output_filenames( dep_libs );
+            output_filename( tools_path( make, "winebuild" ));
+            output_filename( tools_path( make, "winegcc" ));
             output( "\n" );
             output( "\t%s -o $@ -b %s", tools_path( make, "winegcc" ), crosstarget );
             output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));




More information about the wine-cvs mailing list