From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49716) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1daHsS-000213-Hy for guix-patches@gnu.org; Wed, 26 Jul 2017 04:41:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1daHsM-0003Nv-SU for guix-patches@gnu.org; Wed, 26 Jul 2017 04:41:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:54042) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1daHsM-0003Np-Oo for guix-patches@gnu.org; Wed, 26 Jul 2017 04:41:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1daHsM-0006wE-Hb for guix-patches@gnu.org; Wed, 26 Jul 2017 04:41:02 -0400 Subject: [bug#27691] Tabs and patches names Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170714124108.24997-1-go.wigust@gmail.com> <87poczcaxz.fsf@magnolia.i-did-not-set--mail-host-address--so-tickle-me> <87h8y7xy7n.fsf@gnu.org> <87bmo8eaen.fsf@gmail.com> Date: Wed, 26 Jul 2017 10:40:40 +0200 In-Reply-To: <87bmo8eaen.fsf@gmail.com> (Oleg Pykhalov's message of "Tue, 25 Jul 2017 19:41:52 +0300") Message-ID: <87wp6va8vr.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: Oleg Pykhalov Cc: 27691@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Oleg, Oleg Pykhalov skribis: >>>From 3b92b15460fdf422d2de2ea39297a73a8dd87e19 Mon Sep 17 00:00:00 2001 > From: Oleg Pykhalov > Date: Tue, 25 Jul 2017 19:27:47 +0300 > Subject: [PATCH] gnu: Add tome4. > > * gnu/packages/games.scm (tome4): New variable. I had to make the change below so that =E2=80=98tome4=E2=80=99 would behave= as one would expect. However, the game doesn=E2=80=99t work for me: it creates an X11 w= indow that immediately disappears; after that, the engine is running (displaying its activity in the console), but there=E2=80=99s no open windo= w. The problem can be reproduced with: ./pre-inst-env guix environment --pure --ad-hoc tome4=20 Could you check if it works for you? Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index df6922d88..41084a2f2 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -4660,8 +4660,7 @@ Crowther & Woods, its original authors, in 1995. It has been known as ;; defaulting to working directory ;; for engine code! "cd " data "\n" - "./t-engine &\n" - "exit\n")))) + "exec -a tome4 ./t-engine \"$@\"\n")))) (chmod wrapper #o555) ;; licenses (for-each (lambda (file) --=-=-=--