guix-commits
[Top][All Lists]
Advanced

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

05/05: build: Fix typo in Makefile.am conditional.


From: guix-commits
Subject: 05/05: build: Fix typo in Makefile.am conditional.
Date: Fri, 12 Apr 2019 11:56:32 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit c8e070dad70cbc13b6f77d4f20d7d21d3931a835
Author: Ludovic Courtès <address@hidden>
Date:   Fri Apr 12 17:37:20 2019 +0200

    build: Fix typo in Makefile.am conditional.
    
    Reported by Jonathan Brielmaier <address@hidden>
    in <https://bugs.gnu.org/35138>.
    
    This is a followup to a7ad4505b7a09f32e2727a333e11716739efb713.
    
    * gnu/local.mk [!ENABLE_INSTALLER]: Use 'else', not 'elif'.
---
 gnu/local.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/local.mk b/gnu/local.mk
index a618516..b63afee 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -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
 



reply via email to

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