From c06c792a23da5c8335afcff62595c6cf9b1ce3a7 Mon Sep 17 00:00:00 2001 From: John Zimmermann Date: Wed, 15 May 2019 21:27:29 +0200 Subject: xbulk: don't blindly strip the first line of show-build-deps ./xbp-src show-build-deps $pkg does start in the first line with returning dependencies, the current behaviour just stripped the first one --- xbulk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xbulk') diff --git a/xbulk b/xbulk index 5da3c74..e048383 100755 --- a/xbulk +++ b/xbulk @@ -25,7 +25,7 @@ done for pkg in $PKGS; do echo all: pkg-$pkg for dep in $(./xbps-src $ARGS show-build-deps $pkg | - sed '1d;s|[<>].*$||g'); do + sed 's|[<>].*$||g'); do mainpkg $dep | grep -Fx "$PKGS" | sed 's/^/pkg-'$pkg': pkg-/' -- cgit 1.4.1