From: <sg...@us...> - 2007-08-05 08:21:25
|
Revision: 98 http://toc.svn.sourceforge.net/toc/?rev=98&view=rev Author: sgbeal Date: 2007-08-05 01:21:28 -0700 (Sun, 05 Aug 2007) Log Message: ----------- fixed a really stupid var deref error Modified Paths: -------------- trunk/toc2/make/toc2-c.make Modified: trunk/toc2/make/toc2-c.make =================================================================== --- trunk/toc2/make/toc2-c.make 2007-07-05 12:09:41 UTC (rev 97) +++ trunk/toc2/make/toc2-c.make 2007-08-05 08:21:28 UTC (rev 98) @@ -2,7 +2,7 @@ ######################################################################## # This file contains C/C++-related functions for the toc2 framework. -toc2.makefile.c := $(word $(words MAKEFILE_LIST),$(MAKEFILE_LIST)) +toc2.makefile.c := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) $(toc2.makefile.c): toc2.clean_files += *.o This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |