bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#20733: coreutils build problem


From: Andreas Schwab
Subject: bug#20733: coreutils build problem
Date: Thu, 04 Jun 2015 21:35:08 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

Paul Eggert <address@hidden> writes:

> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -195,7 +195,8 @@ check-git-hook-script-sync:
>  # the selected tools when installing.
>  install-exec-hook:
>       $(AM_V_at)ctrans=$$(printf coreutils | sed -e "$(transform)");  \
> -     for p in $(single_binary_progs); do                             \
> +     for p in x $(single_binary_progs); do                           \
> +       test $$p = x && continue;                                     \

A better way to solve that is to use a shell variable:

        progs='$(single_binary_progs)'; \
        for p in $$progs; do

Andreas.

-- 
Andreas Schwab, address@hidden
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."





reply via email to

[Prev in Thread] Current Thread [Next in Thread]