Update of /cvsroot/plib/plib/src/ssg
In directory sc8-pr-cvs1:/tmp/cvs-serv19813
Modified Files:
ssgVertSplitter.cxx
Log Message:
#include'ing <plib/sg.h> references the system installed version which
could be from a different version of plib if the user is upgrading. It
also causes a strange dependency problem when doing a make install from
a read only build tree. plib/sg.h gets installed first so when the make
install hits this file, it thinks it needs to be rebuilt which it can't
do on a read only file system, and shouldn't have to do anyway. Switching
this to #include "sg.h" should be better all around.
Index: ssgVertSplitter.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/ssg/ssgVertSplitter.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ssgVertSplitter.cxx 13 Jan 2004 13:41:48 -0000 1.1
+++ ssgVertSplitter.cxx 13 Jan 2004 14:35:53 -0000 1.2
@@ -16,7 +16,7 @@
#include "ssgVertSplitter.h"
#include <math.h>
-#include <plib/sg.h>
+#include "sg.h"
//
////////////////////////////////////////////////////////////////////////
|