1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-20 08:05:54 +02:00

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'.
This commit is contained in:
Ludovic Courtès
2019-04-12 17:37:20 +02:00
parent 13fd0a3087
commit c8e070dad7
+1 -1
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