Hi, why don't you just use the directory structure suggested by Thrift? It's very logical and tidy.
Patrick Am Montag 20 Juli 2009 um 02:34PM schrieb "Dvir Volk" <[email protected]>: >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... > >
