build: Fix typo in Makefile.am conditional.

Reported by Jonathan Brielmaier <jonathan.brielmaier@web.de>
in <https://bugs.gnu.org/35138>.

This is a followup to a7ad4505b7.

* gnu/local.mk [!ENABLE_INSTALLER]: Use 'else', not 'elif'.
master
Ludovic Courtès 2019-04-12 17:37:20 +02:00
parent 13fd0a3087
commit c8e070dad7
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

View File

@ -622,7 +622,7 @@ INSTALLER_MODULES = \
# ENABLE_INSTALLER is true.
if ENABLE_INSTALLER
GNU_SYSTEM_MODULES += $(INSTALLER_MODULES)
elif !ENABLE_INSTALLER
else !ENABLE_INSTALLER
MODULES_NOT_COMPILED += $(INSTALLER_MODULES)
endif