* lib/am/header-vars.am: Use "ifndef .FEATURES" instead of
"$(if $(.FEATURES))" to determine whether the used GNU make
version is recent enough.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
## The .FEATURES special variable has been introduced in that make
## version, so use it as a witness to determine whether the current
## make is good enough.
-$(if $(.FEATURES),, \
- $(error Automake-NG based builds require GNU make 3.81 or later))
+ifndef .FEATURES
+ $(error Automake-NG based builds require GNU make 3.81 or later)
+endif
am__mkdir = test -d $1 || $(MKDIR_P) $1