From owner-freebsd-current@freebsd.org Mon Dec 18 12:48:07 2017 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F325E86FB8 for ; Mon, 18 Dec 2017 12:48:07 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward102o.mail.yandex.net (forward102o.mail.yandex.net [IPv6:2a02:6b8:0:1a2d::602]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 082DB78ED4 for ; Mon, 18 Dec 2017 12:48:06 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from mxback13g.mail.yandex.net (mxback13g.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:92]) by forward102o.mail.yandex.net (Yandex) with ESMTP id A269E5A03BAF for ; Mon, 18 Dec 2017 15:48:02 +0300 (MSK) Received: from smtp2p.mail.yandex.net (smtp2p.mail.yandex.net [2a02:6b8:0:1472:2741:0:8b6:7]) by mxback13g.mail.yandex.net (nwsmtp/Yandex) with ESMTP id 8HuDLMVhvl-m2V0HL79; Mon, 18 Dec 2017 15:48:02 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=passap.ru; s=mail; t=1513601282; bh=Mkyr4OF7FNV534f1jctrY66Y9+rHvdUsdoZgl81QScU=; h=To:From:Subject:Message-ID:Date; b=GsO3hs4+feBAXllW++ZxiceJirguXRtNJUrKM/0sqJeMJQbEk3vjacTT1etgjKurd xA2DDyuWKXC5sSJa2nx8Z7onRGqJNyShe/BxLLpIvQLWIwfpMxl6NIrIhWRlQlGRcv jQTbKCMPdMQkSWOWHho8LtLY4vhurYcuXI5zejGQ= Received: by smtp2p.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id d7oVdx7WuF-ltsC3cUo; Mon, 18 Dec 2017 15:47:55 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=passap.ru; s=mail; t=1513601275; bh=Mkyr4OF7FNV534f1jctrY66Y9+rHvdUsdoZgl81QScU=; h=To:From:Subject:Message-ID:Date; b=b1qS4mVaKd/Q+K6j+ypol6iP8GVrAid8kmm7yjqQkQMYeWkQg5XGrbsNeBN2pA8pg RhU+ZXkMsjH6I+4U5xxoM3UOnHHFbBZusUGraBUXB7ACCwKOdK6WxESYkymVJOHaiv 7FG1H/JY8tGE4pCVE5t6+b0RJYZCClhb6/hBP7o0= Authentication-Results: smtp2p.mail.yandex.net; dkim=pass header.i=@passap.ru To: freebsd-current@FreeBSD.org From: Boris Samorodov Subject: base packages and subdirs with no regular files Message-ID: Date: Mon, 18 Dec 2017 15:47:55 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: ru-RU Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Dec 2017 12:48:07 -0000 Hi All! I use base package for more then a year now. It works mostly fine. However today I noticed that (some?) blank subdirectories are not removed while updating: --- % LANG=C ls -l /usr/lib/clang drwxr-xr-x 4 root wheel 4 Dec 22 2016 3.9.1 drwxr-xr-x 4 root wheel 4 Mar 3 2017 4.0.0 drwxr-xr-x 4 root wheel 4 Aug 28 14:50 5.0.0 drwxr-xr-x 4 root wheel 4 Dec 8 13:09 5.0.1 --- All previous (to 5.0.1) clang version dirs contain only directories, no regular files: --- % LANG=C ls -l /usr/lib/clang/5.0.0 total 25 drwxr-xr-x 3 root wheel 3 Dec 8 13:09 include drwxr-xr-x 3 root wheel 3 Aug 28 14:50 lib % LANG=C ls -l /usr/lib/clang/5.0.0/include total 1 drwxr-xr-x 2 root wheel 2 Dec 8 13:09 sanitizer % LANG=C ls -l /usr/lib/clang/5.0.0/include/sanitizer total 0 --- I use my personal base package builder and just "pkg upgrade" for, well, upgrades. -- WBR, bsam