From owner-freebsd-ports@FreeBSD.ORG Thu Dec 22 04:13:24 2011 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89686106566B; Thu, 22 Dec 2011 04:13:24 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (agora.rdrop.com [IPv6:2607:f678:1010::34]) by mx1.freebsd.org (Postfix) with ESMTP id 6461E8FC16; Thu, 22 Dec 2011 04:13:24 +0000 (UTC) Received: from agora.rdrop.com (66@localhost [127.0.0.1]) by agora.rdrop.com (8.13.1/8.12.7) with ESMTP id pBM4DIPc054012 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 21 Dec 2011 20:13:19 -0800 (PST) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.12.9/Submit) with UUCP id pBM4DINF054011; Wed, 21 Dec 2011 20:13:18 -0800 (PST) Received: from fbsd81 ([192.168.200.81]) by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA03647; Wed, 21 Dec 11 20:04:24 PST Date: Thu, 22 Dec 2011 03:03:23 -0800 From: perryh@pluto.rain.com To: kob6558@gmail.com Message-Id: <4ef30e7b.gG6UGw+kkNWpdv07%perryh@pluto.rain.com> References: <4EF1E3EF.9000405@eskk.nu> In-Reply-To: User-Agent: nail 11.25 7/29/05 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: mm@freebsd.org, freebsd-ports@freebsd.org, leslie@eskk.nu Subject: Re: Stop in /usr/ports/multimedia/x264 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: Thu, 22 Dec 2011 04:13:24 -0000 Kevin Oberman wrote: > I see the following errors during the configure stage: > ===> Configuring for x264-0.119.2113 > [[: not found That sure looks as if the configure script needs to be run with bash. files/patch-configure does this: -#!/bin/bash +#!/bin/sh which presumes that the script does not actually need bash extensions. However, since it does seem to need those extensions, that part of the patch should be -#!/bin/bash +#!/usr/local/bin/bash and bash needs to be added as a build dependency. (Alternatively, the configure script could be patched to not use the [[ bash builtin.) Maintainer already in Cc: list.