From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60084) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eAJY9-0008GK-O4 for guix-patches@gnu.org; Thu, 02 Nov 2017 13:45:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eAJY6-0000we-KN for guix-patches@gnu.org; Thu, 02 Nov 2017 13:45:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39512) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eAJY6-0000wY-Gs for guix-patches@gnu.org; Thu, 02 Nov 2017 13:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eAJY6-0003Av-9o for guix-patches@gnu.org; Thu, 02 Nov 2017 13:45:02 -0400 Subject: [bug#29100] [PATCH 2/3] install: Use overlayfs instead of unionfs. Resent-Message-ID: Date: Thu, 2 Nov 2017 18:44:05 +0100 From: Danny Milosavljevic Message-ID: <20171102184405.05a67223@scratchpost.org> In-Reply-To: <20171101083952.5376-2-h.goebel@crazy-compilers.com> References: <20171101083952.5376-1-h.goebel@crazy-compilers.com> <20171101083952.5376-2-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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: Hartmut Goebel Cc: 29100@debbugs.gnu.org [...] > - (let ((rw-dir (string-append target #$%backing-directory))) > + (let* ((rw-dir (string-append target #$%backing-directory)) > + ;; FIXME: calculate work-dir from backing-directory: > + ;; normpath(backing-directory + "../.overlayfs-workdir") > + (work-dir (string-append target "/tmp/.overlayfs-workdir"))) What about the FIXME?