From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH] gnu: Simplify dtc package definition. Date: Wed, 7 Sep 2016 09:46:31 +0200 Message-ID: <20160907074631.3771-1-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.9.1" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49667) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhXZj-0003Kg-Ox for guix-devel@gnu.org; Wed, 07 Sep 2016 03:47:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bhXZd-0005NI-Nz for guix-devel@gnu.org; Wed, 07 Sep 2016 03:47:14 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:33557) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhXZd-0005Mo-HF for guix-devel@gnu.org; Wed, 07 Sep 2016 03:47:09 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------2.9.1 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable --- gnu/packages/u-boot.scm | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) --------------2.9.1 Content-Type: text/x-patch; name="0001-gnu-Simplify-dtc-package-definition.patch" Content-Disposition: attachment; filename="0001-gnu-Simplify-dtc-package-definition.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/u-boot.scm b/gnu/packages/u-boot.scm index e9a4b90..7949d8a 100644 --- a/gnu/packages/u-boot.scm +++ b/gnu/packages/u-boot.scm @@ -47,15 +47,11 @@ ("flex" ,flex))) (arguments `(#:make-flags - (list "CC=3Dgcc" (string-append "PREFIX=3D" (assoc-ref %outputs "= out"))) + (list "CC=3Dgcc" + (string-append "PREFIX=3D" (assoc-ref %outputs "out")) + "INSTALL=3Dinstall") #:phases (modify-phases %standard-phases - (add-after 'unpack 'patch-paths - (lambda _ - (substitute* "Makefile" - (("/usr/bin/install") "install")) - (substitute* "Makefile" - (("PREFIX =3D \\$\\(HOME\\)") "")))) (delete 'configure)))) (home-page "https://www.devicetree.org") (synopsis "Compiles device tree source files") --------------2.9.1--