Space delimited? What about paths with spaces in them? Escaped?
On Sep 21, 2010, at 12:49, [email protected] wrote: > Revision: 40637 > http://brlcad.svn.sourceforge.net/brlcad/?rev=40637&view=rev > Author: davidloman > Date: 2010-09-21 16:49:13 +0000 (Tue, 21 Sep 2010) > > Log Message: > ----------- > Removing the "'s added since they are making the BRLCAD_INC_DIRS > variable become a space delimited string rather than a ; delimited > array. > > Modified Paths: > -------------- > rt^3/trunk/cmake/FindBRLCAD.cmake > > Modified: rt^3/trunk/cmake/FindBRLCAD.cmake > =================================================================== > --- rt^3/trunk/cmake/FindBRLCAD.cmake 2010-09-21 16:47:27 UTC (rev > 40636) > +++ rt^3/trunk/cmake/FindBRLCAD.cmake 2010-09-21 16:49:13 UTC (rev > 40637) > @@ -78,10 +78,10 @@ > ENDIF(RT3_VERBOSE_CMAKE_OUTPUT) > > IF(_HEADER_DIR_${tHead}) > - SET(BRLCAD_INC_DIRS "${BRLCAD_INC_DIRS} ${_HEADER_DIR_$ > {tHead}}") > - SET(BRLCAD_HEADERS_FOUND "${BRLCAD_HEADERS_FOUND} $ > {tHead}") > + SET(BRLCAD_INC_DIRS ${BRLCAD_INC_DIRS} ${_HEADER_DIR_$ > {tHead}}) > + SET(BRLCAD_HEADERS_FOUND ${BRLCAD_HEADERS_FOUND} $ > {tHead}) > ELSE(_HEADER_DIR_${tHead}) > - SET(BRLCAD_HEADERS_NOTFOUND "${BRLCAD_HEADERS_NOTFOUND} > ${tHead}") > + SET(BRLCAD_HEADERS_NOTFOUND ${BRLCAD_HEADERS_NOTFOUND} $ > {tHead}) > ENDIF(_HEADER_DIR_${tHead}) > > ENDFOREACH (tHead ${HEADERS_TO_SEARCH_FOR}) > > > This was sent by the SourceForge.net collaborative development > platform, the world's largest Open Source development site. > > --- > --- > --- > --------------------------------------------------------------------- > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > BRL-CAD Source Commits mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/brlcad-commits ------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ BRL-CAD Developer mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/brlcad-devel
