From owner-freebsd-ruby@FreeBSD.ORG Wed Jun 5 03:20:49 2013 Return-Path: Delivered-To: ruby@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0A800897; Wed, 5 Jun 2013 03:20:49 +0000 (UTC) (envelope-from wollman@hergotha.csail.mit.edu) Received: from hergotha.csail.mit.edu (wollman-1-pt.tunnel.tserv4.nyc4.ipv6.he.net [IPv6:2001:470:1f06:ccb::2]) by mx1.freebsd.org (Postfix) with ESMTP id B94EB1F3D; Wed, 5 Jun 2013 03:20:48 +0000 (UTC) Received: from hergotha.csail.mit.edu (localhost [127.0.0.1]) by hergotha.csail.mit.edu (8.14.5/8.14.5) with ESMTP id r553KkjJ094834; Tue, 4 Jun 2013 23:20:46 -0400 (EDT) (envelope-from wollman@hergotha.csail.mit.edu) Received: (from wollman@localhost) by hergotha.csail.mit.edu (8.14.5/8.14.4/Submit) id r553Kk7a094831; Tue, 4 Jun 2013 23:20:46 -0400 (EDT) (envelope-from wollman) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <20910.44686.745921.820750@hergotha.csail.mit.edu> Date: Tue, 4 Jun 2013 23:20:46 -0400 From: Garrett Wollman To: linimon@freebsd.org Subject: Re: ports/179313: ruby 1.9.3.429 disagrees with bsd.ruby.mk In-Reply-To: <201306050243.r552hElJ016983@freefall.freebsd.org> References: <201306050243.r552hElJ016983@freefall.freebsd.org> X-Mailer: VM 7.17 under 21.4 (patch 22) "Instant Classic" XEmacs Lucid X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (hergotha.csail.mit.edu [127.0.0.1]); Tue, 04 Jun 2013 23:20:46 -0400 (EDT) X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED autolearn=disabled version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on hergotha.csail.mit.edu Cc: ruby@freebsd.org, bapt@freebsd.org X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Jun 2013 03:20:49 -0000 < May be fallout from http://svnweb.freebsd.org/changeset/ports/319866 . More likely, r319875 makes *exactly* this change: Index: config.sub =================================================================== --- config.sub (revision 319874) +++ config.sub (revision 319875) @@ -473,6 +473,12 @@ basic_machine=a29k-none os=-bsd ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; amdahl) basic_machine=580-amdahl os=-sysv ...and I can confirm that rolling back to r319483 fixes the problem. -GAWollman