Re: cmake install seems to tamper with interpreter directive

2017-09-08 Thread Alan Conway
Thank you Chris, I still hate cmake (not as much as autotools, and I'm starting to despise distutils) but I have backed down to my normal "amber alert" level of disdain. I never met a build system I didn't dislike. On Wed, Sep 6, 2017 at 5:11 PM, Chris Richardson wrote: > autotools > > Unable t

Re: cmake install seems to tamper with interpreter directive

2017-09-07 Thread Gordon Sim
On 07/09/17 15:24, Ganesh Murthy wrote: Should there be a Dispatch JIRA to fix this problem? Yes - To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org For additional commands, e-mail: users-h...@qpid.apache.org

Re: cmake install seems to tamper with interpreter directive

2017-09-07 Thread Ganesh Murthy
Should there be a Dispatch JIRA to fix this problem? On Wed, Sep 6, 2017 at 5:43 PM, Gordon Sim wrote: > On 06/09/17 22:11, Chris Richardson wrote: > >> autotools >> >> Unable to believe CMake could possibly be this rubbish (I am a devotee I'm >> afraid) I've just spent the last couple of hours

Re: cmake install seems to tamper with interpreter directive

2017-09-06 Thread Gordon Sim
On 06/09/17 22:11, Chris Richardson wrote: autotools Unable to believe CMake could possibly be this rubbish (I am a devotee I'm afraid) I've just spent the last couple of hours sifting through the CMake's own source code to track this one down. It turns out that you have collectively conspired

Re: cmake install seems to tamper with interpreter directive

2017-09-06 Thread Andrew Stitcher
On Wed, 2017-09-06 at 22:11 +0100, Chris Richardson wrote: > ... > CMake: 1, distutils: nil. Thank you, thank you. I was trying to understand this incoherent behaviour not quite believing it could exist in cmake. All-in-all cmake is like democracy (according to Churchill) - "... democracy is the

Re: cmake install seems to tamper with interpreter directive

2017-09-06 Thread Chris Richardson
autotools Unable to believe CMake could possibly be this rubbish (I am a devotee I'm afraid) I've just spent the last couple of hours sifting through the CMake's own source code to track this one down. It turns out that you have collectively conspired to besmirch the good name of CMake and an imm

Re: cmake install seems to tamper with interpreter directive

2017-09-06 Thread Ken Giusti
Alan - Hate cmake? Maybe you'd be interested in automake instead. /me ducks ;) On Wed, Sep 6, 2017 at 2:44 PM, Alan Conway wrote: > On Wed, Sep 6, 2017 at 12:58 PM, Gordon Sim wrote: > >> It seems that the install directive for PROGRAMS in cmake somehow >> evaluates and rewrites the interpre

Re: cmake install seems to tamper with interpreter directive

2017-09-06 Thread Alan Conway
On Wed, Sep 6, 2017 at 12:58 PM, Gordon Sim wrote: > It seems that the install directive for PROGRAMS in cmake somehow > evaluates and rewrites the interpreter directive in some way. > > E.g. in dispatch there is: > > install(PROGRAMS >> ${CMAKE_CURRENT_SOURCE_DIR}/tools/qdstat >> ${CMAKE

cmake install seems to tamper with interpreter directive

2017-09-06 Thread Gordon Sim
It seems that the install directive for PROGRAMS in cmake somehow evaluates and rewrites the interpreter directive in some way. E.g. in dispatch there is: install(PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/tools/qdstat ${CMAKE_CURRENT_SOURCE_DIR}/tools/qdmanage DESTINATION bin) The fir