From owner-freebsd-pkg@FreeBSD.ORG Thu Feb 19 16:12:00 2015 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AA717E2 for ; Thu, 19 Feb 2015 16:12:00 +0000 (UTC) Received: from mail-qg0-x22d.google.com (mail-qg0-x22d.google.com [IPv6:2607:f8b0:400d:c04::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3EEB4A66 for ; Thu, 19 Feb 2015 16:12:00 +0000 (UTC) Received: by mail-qg0-f45.google.com with SMTP id h3so7180456qgf.4 for ; Thu, 19 Feb 2015 08:11:59 -0800 (PST) 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=7vjerZI+bfGnWY6EHzX6dpfKrzIE2pO8w20+Ow4Glbg=; b=VVhJLTqwFqpktj4bpaHTMi23ySa5DhXvIBHMGhJVXXnYiUCKV95hF3czDW781lZgGG L+St5xUvsJy4mrh9swbzMx0asDU3tzQjtA3yAir+pjIevw0r7Ze3pZwNvHR+Lkz2qPEo gr/llZ9w96Coiw6lAz331JeaFBqKaky9eoRW8oonNw9GMNqeeAvcKgjclWa5ulXTxs1d REvSGTN7XtS5aVdggqY1Z468Bu3+G+T3VAu25cEfbo2I0qAXG8fj5CK4oYW51btVozOP DX9QovDKCrUhCyH9vBdjxPsr0l9r8APfFwKvRUz015HAuwlQ4s9QP+nmi/9l4knXbFSM +kxA== MIME-Version: 1.0 X-Received: by 10.140.231.151 with SMTP id b145mr13418107qhc.22.1424362319310; Thu, 19 Feb 2015 08:11:59 -0800 (PST) Received: by 10.96.158.137 with HTTP; Thu, 19 Feb 2015 08:11:59 -0800 (PST) In-Reply-To: <20150219154718.GA51357@admin.sibptus.tomsk.ru> References: <20150217043049.GA68755@admin.sibptus.tomsk.ru> <20150218163739.GA24716@admin.sibptus.tomsk.ru> <20150219031446.GA32820@admin.sibptus.tomsk.ru> <20150219154718.GA51357@admin.sibptus.tomsk.ru> Date: Thu, 19 Feb 2015 18:11:59 +0200 Message-ID: Subject: Re: "poudriere distclean" complains about /etc/make.conf From: Kimmo Paasiala To: Victor Sudakov Content-Type: text/plain; charset=UTF-8 Cc: freebsd-pkg@freebsd.org, Mathieu Arnold X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Feb 2015 16:12:00 -0000 On Thu, Feb 19, 2015 at 5:47 PM, Victor Sudakov wrote: > Mathieu Arnold wrote: > > [dd] > >> |> Ah, yes, HOST is not defined, it's why it fails, you need to add: >> |> >> |> HOST?= >> | >> | Mathieu, what makes you think that HOST is not defined? It's defined >> | in the environment and should be available to make: >> | >> | [sudakov@relay ~] make -V HOST >> | relay.sibptus.ru >> | [sudakov@relay ~] >> >> It's not defined in my environment, so I'd say it's specific to your setup, >> so, it's not defined when poudriere runs make, so it fails. > > Dear Mathieu, you are right. The definition of "HOST?=" fixes the > problem. Probably poudriere cleans the environment. > > Thank you very much for your help. > > > -- > Victor Sudakov, VAS4-RIPE, VAS47-RIPN > sip:sudakov@sibptus.tomsk.ru > _______________________________________________ You're probably exporting (setenv in tcsh(1) and the like) HOST somewhere in your shell init files. Poudriere uses the plain sh(1) shell that does not create a HOST local variable, other shells like tcsh(1) and zsh(1) do create it though. HTH, -Kimmo