mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
Fix build without SSH support.
* gnu/local.mk (GNU_SYSTEM_MODULES): Only include gnu/machine/digital-ocean.scm and gnu/machine/ssh.scm if HAVE_GUILE_SSH is set.
This commit is contained in:
parent
4be969fb7e
commit
214874e820
1 changed files with 8 additions and 2 deletions
10
gnu/local.mk
10
gnu/local.mk
|
@ -637,8 +637,6 @@ GNU_SYSTEM_MODULES = \
|
|||
%D%/system/images/hurd.scm \
|
||||
\
|
||||
%D%/machine.scm \
|
||||
%D%/machine/digital-ocean.scm \
|
||||
%D%/machine/ssh.scm \
|
||||
\
|
||||
%D%/build/accounts.scm \
|
||||
%D%/build/activation.scm \
|
||||
|
@ -716,6 +714,14 @@ INSTALLER_MODULES = \
|
|||
%D%/installer/newt/welcome.scm \
|
||||
%D%/installer/newt/wifi.scm
|
||||
|
||||
if HAVE_GUILE_SSH
|
||||
|
||||
GNU_SYSTEM_MODULES += \
|
||||
%D%/machine/digital-ocean.scm \
|
||||
%D%/machine/ssh.scm
|
||||
|
||||
endif HAVE_GUILE_SSH
|
||||
|
||||
# Always ship the installer modules but compile them only when
|
||||
# ENABLE_INSTALLER is true.
|
||||
if ENABLE_INSTALLER
|
||||
|
|
Loading…
Reference in a new issue