From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59856) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fLwgV-0001gp-NJ for guix-patches@gnu.org; Thu, 24 May 2018 16:18:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fLwgU-0005Uj-Rx for guix-patches@gnu.org; Thu, 24 May 2018 16:18:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39011) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fLwgU-0005Uc-Or for guix-patches@gnu.org; Thu, 24 May 2018 16:18:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fLwgU-0000er-KQ for guix-patches@gnu.org; Thu, 24 May 2018 16:18:02 -0400 Subject: bug#31569: [PATCH] gnu: ntfs-3g: Link 'mount.ntfs' to 'mount.ntfs-3g'. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180523124236.4300-1-ambrevar@gmail.com> Date: Thu, 24 May 2018 22:17:47 +0200 In-Reply-To: <20180523124236.4300-1-ambrevar@gmail.com> (Pierre Neidhardt's message of "Wed, 23 May 2018 14:42:36 +0200") Message-ID: <87603cvmdw.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Pierre Neidhardt Cc: 31569-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Pierre Neidhardt skribis: > * gnu/packages/linux.scm (ntfs-3g)[arguments]: Add #:phases. Makes a lot of sense. Applied with the change below, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f2a9ef0f6..40b4ee09c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3443,7 +3443,7 @@ from userspace.") (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (sbin (string-append out "/sbin"))) - (symlink (string-append sbin "/mount.ntfs-3g") + (symlink "mount.ntfs-3g" (string-append sbin "/mount.ntfs")))))))) (home-page "https://www.tuxera.com/community/open-source-ntfs-3g/") (synopsis "Read-write access to NTFS file systems") --=-=-=--