From: Wolfgang T. <wth...@us...> - 2005-08-04 00:23:19
|
Update of /cvsroot/hoc/hoc/AppKit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2749/AppKit Modified Files: AppKit.conf.in Makefile.in Log Message: Avoid listing the main AppKit or Foundation module twice in the exposed-modules list. Index: Makefile.in =================================================================== RCS file: /cvsroot/hoc/hoc/AppKit/Makefile.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- Makefile.in 3 Aug 2005 02:34:22 -0000 1.14 +++ Makefile.in 4 Aug 2005 00:23:10 -0000 1.15 @@ -16,7 +16,7 @@ exposed-modules.txt: find build/imports | grep '\.hi' \ - | sed 's@build/imports/@ ,@g' | sed 's/\.hi//g' | sed 's@/@.@g' \ + | sed 's@build/imports/@ @g' | sed 's/\.hi//g' | sed 's@/@.@g' \ > exposed-modules.txt AppKit.conf-inplace: AppKit.conf.in exposed-modules.txt Index: AppKit.conf.in =================================================================== RCS file: /cvsroot/hoc/hoc/AppKit/AppKit.conf.in,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- AppKit.conf.in 18 Apr 2005 00:45:43 -0000 1.1 +++ AppKit.conf.in 4 Aug 2005 00:23:10 -0000 1.2 @@ -23,6 +23,3 @@ depends: HOC, Foundation exposed-modules: - AppKit - - |