Fix make install-lib

Francois Gouget fgouget at codeweavers.com
Fri Feb 18 12:50:00 CST 2005


make install-lib is not supposed to install the headers but because of 
these lines it does:

dlls/__install-lib__ dlls/__install-dev__: libs tools include/__install__
programs/__install__: libs tools include/__install__ dlls/__install-lib__

There's no reason for dlls and programs to force the installation of the 
headers so here a patch making them depend on just the includes being built.


Changelog:

  * Makefile.in

    Francois Gouget <fgouget at codeweavers.com>
    dlls/__install-lib__ and programs/__install__ should not force the 
installation of the Wine headers as this is contrary to the purpose of 
install-lib.


-- 
Francois Gouget
fgouget at codeweavers.com

-------------- next part --------------
Index: Makefile.in
===================================================================
RCS file: /var/cvs/wine/Makefile.in,v
retrieving revision 1.159
diff -u -p -r1.159 Makefile.in
--- Makefile.in	7 Oct 2004 03:12:44 -0000	1.159
+++ Makefile.in	18 Feb 2005 18:41:53 -0000
@@ -114,11 +114,11 @@ programs: dlls include libs tools
 include: libs tools
 tools: libs
 
-dlls/__install-lib__ dlls/__install-dev__: libs tools include/__install__
+dlls/__install-lib__ dlls/__install-dev__: libs tools include
 include/__install__: include libs tools
 libs/__install-lib__ libs/__install-dev__: libs
 fonts/__install__ loader/__install__ server/__install__: libs tools
-programs/__install__: libs tools include/__install__ dlls/__install-lib__
+programs/__install__: libs tools include dlls/__install-lib__
 tools/__install__: tools
 
 $(SUBDIRS:%=%/__depend__): tools include


More information about the wine-patches mailing list