From: <sg...@us...> - 2003-09-01 00:19:04
|
Update of /cvsroot/libfunutil/libfunutil/toc/bin In directory sc8-pr-cvs1:/tmp/cvs-serv26526 Modified Files: mkdep.c Log Message: removed commented-out HPATH code Index: mkdep.c =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc/bin/mkdep.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- mkdep.c 30 Aug 2003 19:20:30 -0000 1.4 +++ mkdep.c 1 Sep 2003 00:18:58 -0000 1.5 @@ -29,7 +29,7 @@ * defaults. Only -I is supported, no attempt is made to handle -idirafter, * -isystem, -I- etc. * - * Aug 2003: stephan beal <st...@wa...> + * Aug 2003: stephan beal <sg...@us...> * - removed HPATH requirement for use in the toc project (toc.sourceforge.net) * * Aug 2003: rusty <bo...@us...> @@ -590,15 +590,6 @@ int len; const char *hpath; - /** - hpath = getenv("HPATH"); - if (!hpath) { - fputs("mkdep: HPATH not set in environment. " - "Don't bypass the top level Makefile.\n", stderr); - return 1; - } - */ - add_path("."); /* for #include "..." */ while (++argv, --argc > 0) { @@ -615,8 +606,6 @@ break; } } - - //add_path(hpath); /* must be last entry, for config files */ while (--argc > 0) { const char * filename = *++argv; |