Is anyone having problems building out-of-place?
I usually keep the source in it's own directory and build in a separate directory.
This used to work fine, but I tried pulling the 1.7.6 release today and now I'm getting an error:
make[2]: *** No rule to make target `relpath'. Stop.
make[1]: *** [../../tools/relpath] Error 2
make: *** [libs/wine] Error 2
If I create a copy or a symbolic link to relpath.c to my src/tools/relpath.c, then the compile line for relpath is just:
make[1]: Nothing to be done for `all'.
cc relpath.c -o relpath
relpath.c:21:20: error: config.h: No such file or directory
make[2]: *** [relpath] Error 1
make[1]: *** [../../tools/relpath] Error 2
If I cd into the tools directory and make relpath by hand:
cc -I../include relpath.c -o relpath
I can continue building.
My OS is Mac OS X 10.6.8. Anyone else having this problem?
Out-of-place build broken?
Re: Out-of-place build broken?
Yes there's a missing dependency, you can work around it by doing a make depend before building.
Re: Out-of-place build broken?
Great. Everything is building again.
Thank you.
Thank you.