Makefiles, symlinked folder & relative paths

Posted by l.thee.a on Stack Overflow See other posts from Stack Overflow or by l.thee.a
Published on 2010-03-31T21:49:51Z Indexed on 2010/03/31 21:53 UTC
Read the original article Hit count: 235

Let say I have the following folders:

/A/C

/D/B/E

/D/B/C (this is a symlink to /A/C created by ln -s)

When one of the makefiles tries to use the path /D/B/C/../E it gets a "no file or directory" error. I understand why this happens; /A/E does not exist. However I have to use symlinks to populate the B folder and create the build tree (very long story).

Any ideas?

© Stack Overflow or respective owner

Related posts about makefile

Related posts about symbolic-link