From nobody Thu Sep 05 18:47:23 2024 X-Original-To: freebsd-arm@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4X07dg4sHlz5Td8h for ; Thu, 05 Sep 2024 18:47:35 +0000 (UTC) (envelope-from 4250.82.471df00017d082b.f9d63850de56d4141820436fb8c95d80@email-od.com) Received: from s1-b0c6.socketlabs.email-od.com (s1-b0c6.socketlabs.email-od.com [142.0.176.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4X07dg327Cz4PM5 for ; Thu, 5 Sep 2024 18:47:35 +0000 (UTC) (envelope-from 4250.82.471df00017d082b.f9d63850de56d4141820436fb8c95d80@email-od.com) Authentication-Results: mx1.freebsd.org; none DKIM-Signature: v=1; a=rsa-sha256; d=email-od.com;i=@email-od.com;s=dkim; c=relaxed/relaxed; q=dns/txt; t=1725562055; x=1728154055; h=content-transfer-encoding:content-type:mime-version:references:in-reply-to:message-id:subject:cc:to:from:date:x-thread-info:subject:to:from:cc:reply-to; bh=sjkuPEZHZx0a6puxdBZhRZzr4TX58VyNdJ8r/7abwx0=; b=GkfQU1OC3YXfQz/YxzSgxgOCYTEzC4siQy4A2nXJajRxm6k8bQIfliV47M8pIoQVKsOhGFqbZ3gX/UPY1I9ycn1VxJd4RWB7XvQF2uJi6QUgLiTySh2CD5hNnfjYqVJghASIUvJZa4TSy9NAYgabsL3gH3NVnMWUoq2ttrj9AlA= X-Thread-Info: NDI1MC4xMi40NzFkZjAwMDE3ZDA4MmIuZnJlZWJzZC1hcm09ZnJlZWJzZC5vcmc= x-xsSpam: eyJTY29yZSI6MCwiRGV0YWlscyI6IltdIn0= Received: from [192.168.63.251] (helo=steve.lan.sohara.org) by smtp.lan.sohara.org with smtp (Exim 4.97.1 (FreeBSD)) (envelope-from ) id 1smHVr-00000000A5W-1hyP; Thu, 05 Sep 2024 19:47:23 +0100 Date: Thu, 5 Sep 2024 19:47:23 +0100 From: Steve O'Hara-Smith To: bob prohaska Cc: Michael Stiller , freebsd-arm@freebsd.org Subject: Re: Path puzzle Message-Id: <20240905194723.aadc33be10a168e8c7d0c455@sohara.org> In-Reply-To: References: <105EB88C-1438-4BC6-9561-A92B82743AA2@me.com> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; amd64-portbld-freebsd14.0) X-Clacks-Overhead: "GNU Terry Pratchett" List-Id: Porting FreeBSD to ARM processors List-Archive: https://lists.freebsd.org/archives/freebsd-arm List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-arm@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:7381, ipnet:142.0.176.0/22, country:US] X-Rspamd-Queue-Id: 4X07dg327Cz4PM5 On Thu, 5 Sep 2024 11:37:06 -0700 bob prohaska wrote: > bob@pelorus:~ % head server_try > #!/usr/bin/python3.11 Bingo! On FreeBSD python3.11 will be in /usr/local/bin not /usr/bin. This is why the recommended shebang for python code is #!/usr/bin/env python3.11 Which is portable. -- Steve O'Hara-Smith