Hi Eric,

On Wed, 20 Jul 2016, Eric Wong wrote:

> diff --git a/config.mak.uname b/config.mak.uname
> index a88f139..6c29545 100644
> --- a/config.mak.uname
> +++ b/config.mak.uname
> @@ -202,6 +202,11 @@ ifeq ($(uname_S),FreeBSD)
>               NO_UINTMAX_T = YesPlease
>               NO_STRTOUMAX = YesPlease
>       endif
> +     R_MAJOR := $(shell expr "$(uname_R)" : '\([0-9]*\)\.')
> +
> +     ifeq ($(shell test "$(R_MAJOR)" -ge 5 && echo 1),1)
> +             PERL_PATH = /usr/local/bin/perl
> +     endif

In keeping with other uname_R usage, should this not read

        # Since FreeBSD 5.0, Perl is part of the core
        ifneq ($(shell expr "$(uname_R)" : '[1-4]\.'),2)
                PERL_PATH = /usr/local/bin/perl
        endif

instead?

Ciao,
Dscho
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to