From owner-freebsd-ports@FreeBSD.ORG Sun May 4 19:29:31 2014 Return-Path: Delivered-To: freebsd-ports@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 ESMTPS id A36EBC6F for ; Sun, 4 May 2014 19:29:31 +0000 (UTC) Received: from mail-ob0-x236.google.com (mail-ob0-x236.google.com [IPv6:2607:f8b0:4003:c01::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 646DC16E6 for ; Sun, 4 May 2014 19:29:31 +0000 (UTC) Received: by mail-ob0-f182.google.com with SMTP id wn1so2725566obc.41 for ; Sun, 04 May 2014 12:29:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=gw5yxWFIY3U+7RcRvFHAvO1P1Ybw1Ta1s+5DcnGmR/s=; b=Ga4tNIFaomFE6VI3mv3BkN8Y2gWf/csIMYmonEwruVFgFg1osSAUJUMlhHdBcx3A1+ rwz3FCb71bGehVs4ELb5aGNRzFYxqa3qvS4/y3eKeSOyxQ6Na3d9ELRayvZvuasXaQz3 lVsiGD+lAlgmKkr6ZBNvF0FkaLw9/mMUEcYns= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=gw5yxWFIY3U+7RcRvFHAvO1P1Ybw1Ta1s+5DcnGmR/s=; b=NfkCqOaiSO615vhE5w3RtrUD1kD+zZdkwdPkxBtsK7+UMjIHpJvYqP1A9KsdLyS/9c tQkioyjIaV3qCncc79WLjfX67vC7O32T11OjIal/NR9hHp/xtlWk/iKzFkXB9AH/5HhL RBQUGvxHP88gu4vM2Ux8ZDHM4ByfWalhqztllqRM9aVo/Sx0HYcLOxqRXXQqIObTspDC QHQqrWV2hX/+yzRx0oFwCZ9Xm2rgRnTDeEFTmI4D2xJaASYI6GBV+U2eCa0jmVu/wQWZ SnJpJFa9NEFTT7iP90z75apnrPhTB5gZSZ/F9393CxxpWCENgIz1BpU0iWmadIbdKc77 LtrA== X-Gm-Message-State: ALoCoQn63oKahS9Waj1c9c+CsJV9FPoIOsR2zylXKS0aiyKwW81VbnMt0u7NtL4HLoVm5UCicsmE MIME-Version: 1.0 X-Received: by 10.182.22.33 with SMTP id a1mr3130165obf.60.1399231770342; Sun, 04 May 2014 12:29:30 -0700 (PDT) Received: by 10.76.154.136 with HTTP; Sun, 4 May 2014 12:29:30 -0700 (PDT) X-Originating-IP: [46.207.201.118] Received: by 10.76.154.136 with HTTP; Sun, 4 May 2014 12:29:30 -0700 (PDT) In-Reply-To: References: Date: Sun, 4 May 2014 21:29:30 +0200 Message-ID: Subject: Re: Make loosing a variable (emulators/virtualbox-ose-additions) From: =?UTF-8?Q?Bernhard_Fr=C3=B6hlich?= To: Melvyn Sopacua Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2014 19:29:31 -0000 Am 04.05.2014 20:44 schrieb "Melvyn Sopacua" : > > Hi, > > emulators/virtualbox-ose-additions always fails for me in the stage > installation, so today I looked a bit further: > > Bad: > install -o root -g wheel -m 444 > /usr/obj/ports/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-4.3.10/out/freebsd.amd64/release/bin/additions/vboxvideo_drv_.so > /usr/obj/ports/usr/ports/emulators/virtualbox-ose-additions/work/stage/usr/local/lib/xorg/modules/drivers/vboxvideo_drv.so > > Good: > install -o root -g wheel -m 444 > /usr/obj/ports/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-4.3.10/out/freebsd.amd64/release/bin/additions/vboxvideo_drv_17.so > /usr/obj/ports/usr/ports/emulators/virtualbox-ose-additions/work/stage/usr/local/lib/xorg/modules/drivers/vboxvideo_drv.so > > The difference between bad and good are the 17 missing in the shared > object name. The bad line is created in a clean build and the good line > if one invokes the install target immediately after that failed one. > > Is make really loosing a variable here or could this be a parallelization issue in the upstream build system? That command is part of the port makefile so it's for sure not an upstream bug. Sounds like the xserver version that is used there is not read properly in some case.