diff options
author | bapt <bapt@FreeBSD.org> | 2014-01-27 18:35:19 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-01-27 18:35:19 +0800 |
commit | 7af1a20c2e7465f802d59663fe8c3ff24c717b0b (patch) | |
tree | c4f5ef95b74bf1285a873d3bab9f44f6ad3f853a /Mk | |
parent | 6bf2cdf6b88ec497b5f9f63e2e30f28479530309 (diff) | |
download | freebsd-ports-gnome-7af1a20c2e7465f802d59663fe8c3ff24c717b0b.tar.gz freebsd-ports-gnome-7af1a20c2e7465f802d59663fe8c3ff24c717b0b.tar.zst freebsd-ports-gnome-7af1a20c2e7465f802d59663fe8c3ff24c717b0b.zip |
Do not show orphans anymore with pkgng for .info files
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Scripts/check-stagedir.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Mk/Scripts/check-stagedir.sh b/Mk/Scripts/check-stagedir.sh index 6fa52bf293d6..820034028d9f 100644 --- a/Mk/Scripts/check-stagedir.sh +++ b/Mk/Scripts/check-stagedir.sh @@ -59,6 +59,11 @@ if [ $makeplist = 0 ] ; then *) echo >&3 "$cwd/$line" ;; esac ;; + @info*) + set -- $line + shift + echo "$cwd/$@" + ;; # order matters here - we must check @cwd first because # otherwise the @cwd* would also match it first, shadowing the # @cwd) line. |