From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 31 11:35:58 2019 Received: (at 32835) by debbugs.gnu.org; 31 Jan 2019 16:35:58 +0000 Received: from localhost ([127.0.0.1]:53209 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gpFJm-0001EX-8E for submit@debbugs.gnu.org; Thu, 31 Jan 2019 11:35:58 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:41810) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gpFJk-0001EN-Jg for 32835@debbugs.gnu.org; Thu, 31 Jan 2019 11:35:56 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 175A39A8D; Thu, 31 Jan 2019 17:35:55 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FXOY15sOrGYX; Thu, 31 Jan 2019 17:35:54 +0100 (CET) Received: from jurong (cable-78.29.213.16.coditel.net [78.29.213.16]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 965B79A8B; Thu, 31 Jan 2019 17:35:53 +0100 (CET) Date: Thu, 31 Jan 2019 17:35:51 +0100 From: Andreas Enge To: Maxim Cournoyer Subject: Re: bug#32835: icecat show many warning and don't display correctly Message-ID: <20190131163551.GA27000@jurong> References: <20190107181000.GA14844@jurong> <78584a9f1b7beabb5b6b09d6a67aa84e@riseup.net> <20190127155410.GC10186@jurong> <20190128013129.upbea2jzzqyncpew@WaraToNora> <20190130170158.GA4088@jurong> <87d0oenhvu.fsf@elephly.net> <20190131104723.GA6146@jurong> <34AD502E-C138-4A99-8640-415F5E08F031@gmail.com> <20190131162328.GA26610@jurong> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190131162328.GA26610@jurong> User-Agent: Mutt/1.11.0 (2018-11-25) X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 32835 Cc: kumagusu08@gmail.com, quiliro@fsfla.org, help-guix@gnu.org, 32835@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.3 (/) Well, things are more delicate than that. It is not enough to just swap the build system, something probably also needs to be done around these lines in the build recipe: #:modules ((ice-9 ftw) (ice-9 rdelim) (ice-9 match) ,@%gnu-build-system-modules) Also, the binary is already wrapped: (add-after 'install 'wrap-program (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (lib (string-append out "/lib")) (gtk (assoc-ref inputs "gtk+")) (gtk-share (string-append gtk "/share"))) (wrap-program (car (find-files lib "^icecat$")) `("XDG_DATA_DIRS" ":" prefix (,gtk-share))) #t)))))) I am deferring to someone more knowledgeable... Andreas