From owner-freebsd-ports@FreeBSD.ORG Fri Jun 20 12:47:28 2014 Return-Path: Delivered-To: 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 EAEE18FE for ; Fri, 20 Jun 2014 12:47:28 +0000 (UTC) Received: from mail-yh0-x230.google.com (mail-yh0-x230.google.com [IPv6:2607:f8b0:4002:c01::230]) (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 B0F7C2DC0 for ; Fri, 20 Jun 2014 12:47:28 +0000 (UTC) Received: by mail-yh0-f48.google.com with SMTP id b6so2758326yha.7 for ; Fri, 20 Jun 2014 05:47:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=hQvof4TGZJQ7UDeGXItMOoa8TSJ73LOkRc5N8yuRyEE=; b=DkkkzLW/siPUjXQN7o0nmvfNBJWQYkw5uty2QdHq+T0GcZ/MKTVE9WpUcWo9dghXQL f3X9BLxX1U2o/l+S926VaV9ol4hYdJA2PUAC8soZBETb9mls9SE/SZEDiJCcOa+a378Z GOFDBU8rLYNyDzUdEBKzK32yX2E9/3bvgDbNzqV1k3bH604armvspKA9cdiYdCL3cFPo OYOU1M29K5Vm82Fe4dRI/JdfBCcbrnLJEwPTaWynkl3UM/MxGVdu6g6ciqa9iMMZbgjC 2bkOOOrjIv747BFEUy0w3/zqE8en45TS4y1aBfaczjCR06vG6kwkMRjKVaYcM+rc3HsM vA3Q== MIME-Version: 1.0 X-Received: by 10.236.85.45 with SMTP id t33mr4951670yhe.74.1403268447835; Fri, 20 Jun 2014 05:47:27 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.50.80 with HTTP; Fri, 20 Jun 2014 05:47:27 -0700 (PDT) In-Reply-To: References: Date: Fri, 20 Jun 2014 14:47:27 +0200 X-Google-Sender-Auth: RpElm_HBSIUzb_LyDB1_rRoTufw Message-ID: Subject: Re: Error: Orphaned: @unexec rmdir "/home" >/dev/null 2>&1 || : (PING) From: Antoine Brodin To: Gerald Pfeifer Content-Type: text/plain; charset=UTF-8 Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jun 2014 12:47:29 -0000 On Fri, Jun 20, 2014 at 2:07 PM, Gerald Pfeifer wrote: > [ No ideas? Shall I just file a bug report? ] > > Build with a non-standard PREFIX and LOCALBASE in /home/gerald/10-i386, > make ports builds have been failing with the following for a bit (for > lang/gcc49 among others): > > #### Running regression-test, checking for orphans, checking pkg-plist. > ====> Checking for pkg-plist issues (check-plist) > ===> Parsing plist > ===> Checking for items in STAGEDIR missing from pkg-plist > Error: Orphaned: @unexec rmdir "/home/gerald" >/dev/null 2>&1 || : > Error: Orphaned: @unexec rmdir "/home" >/dev/null 2>&1 || : > > Any ideas what is going on here? And what is adding those interesting > @unexec rmdir entries? > > Either these should not be added, or check-plist should not error out > when seeing them. Hi, You can try to add NO_PREFIX_RMDIR=yes to your port when you test it. Testing PREFIX!=LOCALBASE often produces strange results anyway, in most cases people should test PREFIX=LOCALBASE != /usr/local and not PREFIX!=LOCALBASE. Cheers, Antoine