cmake: remove recursive call, even if it breaks merged builds with GCC

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34279 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Peter Kümmel 2010-04-23 12:52:39 +00:00
parent 0f2e47c4ad
commit be9fdbcad4

View File

@ -24,11 +24,9 @@
#ifdef LYX_MERGED_BUILD
// GCC couldn't find operator==
namespace lyx {
bool operator==(lyx::docstring & d, char const * c)
{ return lyx::operator ==(d, c); }
bool operator==(lyx::docstring & d, char const * c);
namespace frontend {
bool operator==(lyx::docstring & d, char const * c)
{ return lyx::operator ==(d, c); }
bool operator==(lyx::docstring & d, char const * c);
}
}
#endif