Kevin Oberman <kob6...@gmail.com> 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.
_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to