From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Brielmaier Subject: bug#35138: guix system search needs installer Date: Fri, 12 Apr 2019 12:51:27 +0200 Message-ID: References: <56dc9a78-a55c-a8a3-157c-327399784171@web.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([209.51.188.92]:49695) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hEtmt-0006Jl-EP for bug-guix@gnu.org; Fri, 12 Apr 2019 06:52:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hEtms-0004f6-G5 for bug-guix@gnu.org; Fri, 12 Apr 2019 06:52:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:41956) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hEtms-0004el-3G for bug-guix@gnu.org; Fri, 12 Apr 2019 06:52:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hEtmr-0004BM-UN for bug-guix@gnu.org; Fri, 12 Apr 2019 06:52:01 -0400 In-Reply-To: <56dc9a78-a55c-a8a3-157c-327399784171@web.de> Sender: "Debbugs-submit" Resent-Message-ID: Content-Language: en-US List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 35138@debbugs.gnu.org I think your fix in commit a7ad4505b7a09f32e2727a333e11716739efb713 introduced another bug. So building guix now with "./configure --enable-installer" leads to this error: ------------------------------------------------------------------ + make clean Makefile:5388: *** missing separator. Stop. + make -j8 Makefile:5388: *** missing separator. Stop. ------------------------------------------------------------------ The resulting Makefile looks as follow: ------------------------------------------------------------------ 5384 scripts/guix: scripts/guix.in Makefile 5385 $(AM_V_at)rm -f $@ $@-t 5386 $(AM_V_at)$(MKDIR_P) "$(@D)" 5387 $(AM_V_GEN)$(do_subst) < "$(srcdir)/$@.in" > "$@-t" 5388 $(AM_V_at)chmod a+x,a-w "$@-t" && mv -f "$@-t" "$@" 5389 elif !ENABLE_INSTALLER 5390 ------------------------------------------------------------------ My assumption is that the ENABLE_INSTALLER statement in gnu/local.mk doesn't get evaluated "correctly". ------------------------------------------------------------------ 621 # Always ship the installer modules but compile them only when 622 # ENABLE_INSTALLER is true. 623 if ENABLE_INSTALLER 624 GNU_SYSTEM_MODULES += $(INSTALLER_MODULES) 625 elif !ENABLE_INSTALLER 626 MODULES_NOT_COMPILED += $(INSTALLER_MODULES) 627 endif ------------------------------------------------------------------ With "./configure --disable-installer" the line 5389 in Makefile is commented out.