From owner-freebsd-ports@FreeBSD.ORG Mon Nov 7 06:01:44 2011 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D3B0106566C for ; Mon, 7 Nov 2011 06:01:44 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from outbound.icp-qv1-irony-out2.iinet.net.au (outbound.icp-qv1-irony-out2.iinet.net.au [203.59.1.107]) by mx1.freebsd.org (Postfix) with ESMTP id 650C58FC0C for ; Mon, 7 Nov 2011 06:01:42 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ah0HABVtt058lJS2/2dsb2JhbABDmkyPMYEFgjM/KE0YvW6ISGMEmT8yjDA X-IronPort-AV: E=Sophos;i="4.69,468,1315152000"; d="scan'208";a="774721586" Received: from unknown (HELO smtp.phoenix) ([124.148.148.182]) by outbound.icp-qv1-irony-out2.iinet.net.au with ESMTP; 07 Nov 2011 13:32:34 +0800 Received: by smtp.phoenix (Postfix, from userid 1001) id ABB4B1098; Mon, 7 Nov 2011 16:32:33 +1100 (EST) Date: Mon, 7 Nov 2011 16:32:33 +1100 From: andrew clarke To: ports@FreeBSD.org Message-ID: <20111107053233.GA78146@ozzmosis.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: eadler@FreeBSD.org Subject: editors/nano-devel makefile typo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Nov 2011 06:01:44 -0000 The makefile for editors/nano-devel has a trivial typo that you may have already fixed by the time you read this. Below is a patch to fix it... Aside, I'm not sure the ports tree supports FreeBSD pre-7.0, so the OS version check may be redundant? --- Makefile.orig 2011-11-07 15:24:54.000000000 +1100 +++ Makefile 2011-11-07 16:23:25.414806093 +1100 @@ -36,7 +36,7 @@ .include # requires wide character curses -.if (${OSVERSION} < 700033 +.if (${OSVERSION} < 700033) CONFIGURE_ARGS+=--disable-utf8 .else CONFIGURE_ARGS+=--enable-utf8