Re: find usage of gcov-clean target in Makefile.in

2019-12-04 Thread Yasuhito FUTATSUKI
On 2019/12/05 11:03, Daniel Shahaf wrote: Yasuhito FUTATSUKI wrote on Thu, 05 Dec 2019 01:31 +00:00: This need to generate SWIG language bindings C source and support codes before configure to build them, and then, I awared that 'autogen.sh --release' is now broken on generation of swig-py sou

Re: find usage of gcov-clean target in Makefile.in

2019-12-04 Thread Daniel Shahaf
Yasuhito FUTATSUKI wrote on Thu, 05 Dec 2019 01:31 +00:00: > I'm sorry for the delay. No worries. > Thanks you, Daniel and Brane, now I can build out of the woking copy. > > This need to generate SWIG language bindings C source and support codes > before configure to build them, and then, I awar

Re: find usage of gcov-clean target in Makefile.in

2019-12-04 Thread Yasuhito FUTATSUKI
On 2019/12/05 10:31, Yasuhito FUTATSUKI wrote: I'm sorry for the delay. On 2019/11/29 6:17, Daniel Shahaf wrote: Yasuhito FUTATSUKI wrote on Fri, Nov 29, 2019 at 00:15:48 +0900: Hi, while I do 'make distclean', I find odd `find' usage. In Makefile.in: gcov-clean: rm -f gcov-lcov.dat gco

Re: find usage of gcov-clean target in Makefile.in

2019-12-04 Thread Yasuhito FUTATSUKI
I'm sorry for the delay. On 2019/11/29 6:17, Daniel Shahaf wrote: Yasuhito FUTATSUKI wrote on Fri, Nov 29, 2019 at 00:15:48 +0900: Hi, while I do 'make distclean', I find odd `find' usage. In Makefile.in: gcov-clean: rm -f gcov-lcov.dat gcov-lcov.log gcov-genhtml.log rm -rf gcov-rep

Re: find usage of gcov-clean target in Makefile.in

2019-11-29 Thread Daniel Shahaf
Daniel Shahaf wrote on Thu, 28 Nov 2019 21:50 +00:00: > Branko Čibej wrote on Thu, 28 Nov 2019 21:30 +00:00: > > I think this warrants a bug report to infra because the link really > > should work correctly. > > Created https://issues.apache.org/jira/browse/INFRA-19500. Fixed.

Re: find usage of gcov-clean target in Makefile.in

2019-11-28 Thread Nathan Hartman
On Thu, Nov 28, 2019 at 8:51 PM Daniel Shahaf wrote: > Nathan Hartman wrote on Fri, 29 Nov 2019 01:41 +00:00: > > On Thu, Nov 28, 2019 at 4:18 PM Daniel Shahaf > wrote: > > > Is -prune portable? I don't see it in the POSIX spec of find(1). > > > > Where did you look? This page mentions -prune a

Re: find usage of gcov-clean target in Makefile.in

2019-11-28 Thread Daniel Shahaf
Nathan Hartman wrote on Fri, 29 Nov 2019 01:41 +00:00: > On Thu, Nov 28, 2019 at 4:18 PM Daniel Shahaf wrote: > > Is -prune portable? I don't see it in the POSIX spec of find(1). > > Where did you look? This page mentions -prune and even provides an example: > https://pubs.opengroup.org/onlinepu

Re: find usage of gcov-clean target in Makefile.in

2019-11-28 Thread Nathan Hartman
On Thu, Nov 28, 2019 at 4:18 PM Daniel Shahaf wrote: > Yasuhito FUTATSUKI wrote on Fri, Nov 29, 2019 at 00:15:48 +0900: > > Hi, while I do 'make distclean', I find odd `find' usage. > > > > In Makefile.in: > > > gcov-clean: > > > rm -f gcov-lcov.dat gcov-lcov.log gcov-genhtml.log > > > rm

Re: find usage of gcov-clean target in Makefile.in

2019-11-28 Thread Daniel Shahaf
Branko Čibej wrote on Thu, 28 Nov 2019 21:30 +00:00: > I think this warrants a bug report to infra because the link really > should work correctly. Created https://issues.apache.org/jira/browse/INFRA-19500. Thanks, Daniel

Re: find usage of gcov-clean target in Makefile.in

2019-11-28 Thread Branko Čibej
On 28.11.2019 22:17, Daniel Shahaf wrote: > That used to be documented > on http://wiki.apache.org/subversion/BuildNotes, but I'm not sure if that > link's > still valid — it just gives me a login prompt now ☹) It's a broken redirect to Confluence and I don't know why it's not globally readable,

Re: find usage of gcov-clean target in Makefile.in

2019-11-28 Thread Daniel Shahaf
Yasuhito FUTATSUKI wrote on Fri, Nov 29, 2019 at 00:15:48 +0900: > Hi, while I do 'make distclean', I find odd `find' usage. > > In Makefile.in: > > gcov-clean: > > rm -f gcov-lcov.dat gcov-lcov.log gcov-genhtml.log > > rm -rf gcov-report > > find . -name "*.gcda" -o -name "*.gcno" -ex

find usage of gcov-clean target in Makefile.in

2019-11-28 Thread Yasuhito FUTATSUKI
Hi, while I do 'make distclean', I find odd `find' usage. In Makefile.in: gcov-clean: rm -f gcov-lcov.dat gcov-lcov.log gcov-genhtml.log rm -rf gcov-report find . -name "*.gcda" -o -name "*.gcno" -exec rm -f -- {} \; Is it intended below ? find . \( -name "*.gcda"