From owner-freebsd-chromium@FreeBSD.ORG Sun Aug 4 20:28:28 2013 Return-Path: Delivered-To: chromium@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9109548D; Sun, 4 Aug 2013 20:28:28 +0000 (UTC) (envelope-from geo.liaskos@gmail.com) Received: from mail-ee0-x22e.google.com (mail-ee0-x22e.google.com [IPv6:2a00:1450:4013:c00::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F2EE928CD; Sun, 4 Aug 2013 20:28:27 +0000 (UTC) Received: by mail-ee0-f46.google.com with SMTP id c13so1244490eek.5 for ; Sun, 04 Aug 2013 13:28:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=oyL1TqLx7IQeSs9pdzwz3ct08Ibhl7E0cjmEgLoWsck=; b=qRVsG8GkNvHzJRGcWv3F+eOgc/PfCo7rGZo3uZdVn37hjYkWRitqVliMRZedhDfRrb tUJzKFQXJTN9YYgA5X7JsEhHPa1BT88X4JL/r8OVdP2X775h0OrPT5rp25MzqpmszGCh y7SZg4Tz9ewCXrqhyKPByAJhwvnAtM/tx8MMR090U5UHy3u9SjHU8o2x3aHnNgPcAjgG 6D0XxYHJTkEC0oV8cmhx66PoLRSNvh72mg2GPCq+e9R526gAt3fqakpyKUy59YKZ5SkY byp/v2Of0hwo1bARVuFMv3Misns+p8l1eaBai8Qh81RBZvVh1CFRH+NYk0a38Cv3PFJN SSDw== MIME-Version: 1.0 X-Received: by 10.14.224.6 with SMTP id w6mr13912208eep.99.1375648106355; Sun, 04 Aug 2013 13:28:26 -0700 (PDT) Received: by 10.223.79.65 with HTTP; Sun, 4 Aug 2013 13:28:26 -0700 (PDT) In-Reply-To: <51FE9E21.1040306@FreeBSD.org> References: <51E957FF.9040002@FreeBSD.org> <51FD5464.3020309@FreeBSD.org> <51FE4F54.2040601@FreeBSD.org> <51FE9E21.1040306@FreeBSD.org> Date: Sun, 4 Aug 2013 23:28:26 +0300 Message-ID: Subject: Re: chromium-28.0.1500.71 build failed on a system without base gcc From: George Liaskos To: Andriy Gapon Content-Type: text/plain; charset=UTF-8 Cc: chromium@freebsd.org X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Aug 2013 20:28:28 -0000 Unfortunately /usr/bin/gcc is hardcoded, this fixes the build for me diff --git a/www/chromium/Makefile b/www/chromium/Makefile index dab973d..71c42e4 100644 --- a/www/chromium/Makefile +++ b/www/chromium/Makefile @@ -176,7 +176,9 @@ post-patch: ${WRKSRC}/third_party/libvpx/libvpx.gyp \ ${WRKSRC}/crypto/crypto.gyp \ ${WRKSRC}/v8/tools/gyp/v8.gyp \ - ${WRKSRC}/v8/build/common.gypi + ${WRKSRC}/v8/build/common.gypi + @${REINPLACE_CMD} -e "s|/usr/bin/gcc|${CC}|" \ + ${WRKSRC}/third_party/WebKit/Source/core/core.gypi @${REINPLACE_CMD} -e "s|linux|freebsd|" \ ${WRKSRC}/tools/gyp/pylib/gyp/generator/make.py @${REINPLACE_CMD} -e "s|is_linux|(is_linux or is_bsd)|" \