Hi, When I'm generating php from thrift files, I always get this thing: if I generate a service called Foo, the output is 2 files, one is FooService.php and the other Foo_types.php, FooService.php will contain the following include:
include_once $GLOBALS['THRIFT_ROOT'].'/packages/Foo/Foo_types.php'; when actually they are both located in the the same directory, and it should just be: include_once 'Foo_types.php'; How do I stop this behavior? It's driving me crazy editing generated files all the time...
