diff options
-rwxr-xr-x | xpcdeps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xpcdeps b/xpcdeps index a594d01..bb4ac44 100755 --- a/xpcdeps +++ b/xpcdeps @@ -14,7 +14,7 @@ tempdir="$(mktemp -d)" create_pcfile() { branch=$(git symbolic-ref -q --short HEAD 2>/dev/null) while read -r pkgname file ; do - for rpkg in $( xbps-query --repository=hostdir/binpkgs/"$branch" --cat="$file" "$pkgname" | grep Requires: | cut -d: -f2 ) ; do + for rpkg in $( xbps-query --repository=hostdir/binpkgs/"$branch" --cat="$file" "$pkgname" | grep Requires: | cut -d: -f2 | sed 's/,/ /g' ) ; do # This makes the iterator ignore over the version specifier available for pkg-config # >=, <=, >, <, =, and also ignore versions by ignoring everything that doesn't have # a letter |