[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Avoid error message during "make check"
|
From: |
Bruno Haible |
|
Subject: |
Re: Avoid error message during "make check" |
|
Date: |
Wed, 24 Feb 2021 11:48:54 +0100 |
|
User-agent: |
KMail/5.1.3 (Linux/4.4.0-201-generic; KDE/5.18.0; x86_64; ; ) |
Jose E. Marchesi wrote:
> I always thought make variables like $(RM) came from configure, and not
> from make itself.
It comes from 'make':
https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html
It does not come from 'configure'. You see no 'S["RM"]' assignment here:
$ grep RM config.status
RM='rm -f'
S["HAVE_WCSXFRM"]="1"
S["GNULIB_WCSXFRM"]="0"
S["REPLACE_RMDIR"]="0"
S["GNULIB_MDA_RMDIR"]="1"
S["GNULIB_RMDIR"]="0"
D["HAVE_DECL_ALARM"]=" 1"
trap "$RM \"$cfgfile\"; exit 1" 1 2 15
$RM "$cfgfile"
> OK for master.
Pushed.