Re: Question to EXTRACT_ONLY

2022-11-29 Thread Matthias Fechner
Thanks, On 29.11.22 11:22, Tatsuki Makino wrote: Hello. Gleb Popov wrote on 2022/11/29 15:47: On Tue, Nov 29, 2022 at 12:14 AM Matthias Fechner wrote: But what does the last `:` at the end of this string? This one is a correct interpretation. As for the first one, I'm also unsure about the

Re: Question to EXTRACT_ONLY

2022-11-29 Thread Tatsuki Makino
Hello. Gleb Popov wrote on 2022/11/29 15:47: > On Tue, Nov 29, 2022 at 12:14 AM Matthias Fechner wrote: >> But what does the last `:` at the end of this string? > > This one is a correct interpretation. > > As for the first one, I'm also unsure about the last ":" Maybe it is a > part of the :N

Re: Question to EXTRACT_ONLY

2022-11-28 Thread Gleb Popov
On Tue, Nov 29, 2022 at 12:14 AM Matthias Fechner wrote: > > Dear all, > > I found some good explanation in `man make`, but some questions are > open, maybe someone can give a little bit more insight. > > On 28.11.22 19:12, Matthias Fechner wrote: > > EXTRACT_ONLY= ${ALLFILES:Nprebuilt*:} > it tak

Re: Question to EXTRACT_ONLY

2022-11-28 Thread Matthias Fechner
Dear all, I found some good explanation in `man make`, but some questions are open, maybe someone can give a little bit more insight. On 28.11.22 19:12, Matthias Fechner wrote: EXTRACT_ONLY= ${ALLFILES:Nprebuilt*:} it takes the variable ${ALLFILES}, the :N operator removes everything that ma

Question to EXTRACT_ONLY

2022-11-28 Thread Matthias Fechner
Dear all, I currently work on an upgrade of some ports, but to continue here, I need to understand what to two lines are doing: EXTRACT_ONLY=  ${ALLFILES:Nprebuilt*:} EXTRACT_ONLY+= ${DISTFILES:N*.mod\:*:N*.mod:C/:.*//} Would be nice if someone could bring some light into this. Thanks a lot