Re: [gentoo-user] CMake and empty directories

2009-04-16 Thread Patrick Holthaus
Hey Arttu! Just a wild guess from a perl-fan: would it work if you escaped that dollar sign with a backslash? It might move the expansion around a bit, maybe even to the right place if you're lucky. Tried that, unfortunately it did not have the desired effect. Thanks for your suggestion.

[gentoo-user] CMake and empty directories

2009-04-15 Thread Patrick Holthaus
Hello gentooers! Maybe some of you can help me with this one. I'm trying to create an ebuild to test some of our university software on my laptop. It is using cmake as a build tool. CMakeLists.txt states the following (among others :) SET(PREFIX ${CMAKE_INSTALL_PREFIX}) SET(INCLUDEDIR_B

Re: [gentoo-user] CMake and empty directories

2009-04-15 Thread Arttu V.
On 4/15/09, Patrick Holthaus patrick.holth...@uni-bielefeld.de wrote: INSTALL(CODE FILE(MAKE_DIRECTORY ${INCLUDEDIR_B}/iwPlugins)) snip/ It seems for me that the variable INCLUDEDIR_B is not expanded to the sandbox path but /usr/include within the CODE statement. Just a wild guess from a