diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-06-05 12:56:44 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-06-05 12:56:44 +0000 |
commit | b3174ba768b14009401acd63baa8c3d5730fe2df (patch) | |
tree | c54d94aa42433d2c87b91dbb6d5f91b123696d58 /abuild.in | |
parent | fede6d1161acfcfe9e0f3fadeeb1a6e75021e037 (diff) | |
download | abuild-b3174ba768b14009401acd63baa8c3d5730fe2df.tar.gz abuild-b3174ba768b14009401acd63baa8c3d5730fe2df.tar.bz2 abuild-b3174ba768b14009401acd63baa8c3d5730fe2df.tar.xz abuild-b3174ba768b14009401acd63baa8c3d5730fe2df.zip |
abuild: make sure we don't add dupes of providesv2.23.0_rc1
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1069,7 +1069,7 @@ trace_apk_deps() { >> "$dir"/.PKGINFO fi if [ -f "$dir"/.provides-pc ]; then - sed 's/^/provides = pc:/' "$dir"/.provides-pc \ + sed 's/^/provides = pc:/' "$dir"/.provides-pc | sort -u \ >> "$dir"/.PKGINFO fi [ -z "$autodeps" ] && return 0 |