From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44796) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gS9Zs-0003r7-4D for guix-patches@gnu.org; Wed, 28 Nov 2018 18:49:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gS9Zm-0000Td-Kb for guix-patches@gnu.org; Wed, 28 Nov 2018 18:49:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:49641) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gS9Zm-0000TS-FA for guix-patches@gnu.org; Wed, 28 Nov 2018 18:49:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gS9Zm-0003re-9x for guix-patches@gnu.org; Wed, 28 Nov 2018 18:49:02 -0500 Subject: [bug#33546] [PATCH 1/2] gnu: sassc: Fix build. Resent-Message-ID: Date: Thu, 29 Nov 2018 00:48:18 +0100 From: =?UTF-8?Q?Bj=C3=B6rn_?= =?UTF-8?Q?H=C3=B6fling?= Message-ID: <20181129004818.187af6cd@alma-ubu> In-Reply-To: <20181129004436.33eaee0f@alma-ubu> References: <20181129004436.33eaee0f@alma-ubu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; boundary="Sig_/nZfz9CscCyXzh36kiI+FcRn"; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33546@debbugs.gnu.org --Sig_/nZfz9CscCyXzh36kiI+FcRn Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable From: Ricardo Wurmus Date: Sun, 5 Aug 2018 13:03:09 +0200 * gnu/packages/web.scm (sassc)[arguments]: Delete bootstrap phase; let phase end on boolean. --- gnu/packages/web.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 7f9574827..2e3647ddc 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -1281,12 +1281,14 @@ minimum to provide high performance operation.") #:tests? #f #:phases (modify-phases %standard-phases + (delete 'bootstrap) (delete 'configure) (add-after 'unpack 'unpack-libsass-and-set-path (lambda* (#:key inputs #:allow-other-keys) (invoke "tar" "xvf" (assoc-ref inputs "libsass")) (setenv "SASS_LIBSASS_PATH" - (string-append (getcwd) "/libsass-" ,version))))))) + (string-append (getcwd) "/libsass-" ,version)) + #t))))) (inputs `(("libsass" ,libsass))) (synopsis "CSS pre-processor") --=20 2.19.1 --Sig_/nZfz9CscCyXzh36kiI+FcRn Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlv/KUMACgkQvyhstlk+X/2GtwCfUfysyvTE/RJ/7hKtL3iJ0nPv DUYAoIMlPBj80+xPPlPeWB+XSyAtrs61 =g79h -----END PGP SIGNATURE----- --Sig_/nZfz9CscCyXzh36kiI+FcRn--