diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-04-12 17:37:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-12 17:56:23 +0200 |
commit | c8e070dad70cbc13b6f77d4f20d7d21d3931a835 (patch) | |
tree | ee76efa712ff55f7b784f26f7d17ff7581328d6c | |
parent | 13fd0a30877acc8c152c37d0b04158f7b65e4646 (diff) | |
download | guix-c8e070dad70cbc13b6f77d4f20d7d21d3931a835.tar.gz guix-c8e070dad70cbc13b6f77d4f20d7d21d3931a835.zip |
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 a7ad4505b7a09f32e2727a333e11716739efb713.
* gnu/local.mk [!ENABLE_INSTALLER]: Use 'else', not 'elif'.
-rw-r--r-- | gnu/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index a618516142..b63afeee30 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 |