Re: [HEADS UP] CMake Error: No source or binary directory provided

2019-02-04 Thread Jonathan Wakely
On 04/02/19 12:49 +0100, Vít Ondruch wrote: Hi, It seems that since CMake 3.13, it is required to invoke the cmake command explicitly with path to source, which was not required previously. IOW in F29 was enough to call: ~~~ $ cmake ~~~ while F30+ requires: ~~~ $ cmake . ~~~ Unfortun

Re: [HEADS UP] CMake Error: No source or binary directory provided

2019-02-04 Thread Vít Ondruch
Actually, it seems this error was relaxed to warning in 3.13.4, which is in Rawhide since yesterday: https://github.com/Kitware/CMake/commit/2395b1b244743aaf28426a72f37d1aac96e3db9e Vít Dne 04. 02. 19 v 12:49 Vít Ondruch napsal(a): > Hi, > > It seems that since CMake 3.13, it is required to in

Re: [HEADS UP] CMake Error: No source or binary directory provided

2019-02-04 Thread Vít Ondruch
The most naive grep identifies at least 23 packages: ~~~ $ grep -R -e '^%cmake$' | wc -l 23 ~~~ Vít Dne 04. 02. 19 v 12:49 Vít Ondruch napsal(a): > Hi, > > It seems that since CMake 3.13, it is required to invoke the cmake > command explicitly with path to source, which was not required > pr

[HEADS UP] CMake Error: No source or binary directory provided

2019-02-04 Thread Vít Ondruch
Hi, It seems that since CMake 3.13, it is required to invoke the cmake command explicitly with path to source, which was not required previously. IOW in F29 was enough to call: ~~~ $ cmake ~~~ while F30+ requires: ~~~ $ cmake . ~~~ Unfortunately, neither upstream nor Fedora packagers p