We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f17396f commit 94b89d3Copy full SHA for 94b89d3
1 file changed
configure
@@ -153,8 +153,12 @@ for p in `cat pkgs.txt`; do
153
touch tobuild/$p
154
;;
155
2)
156
- pkgver="$(grep "^$p " < $RCV_FPV | tail -n 1 | tr ' ' -)"
157
- touch toremove/$pkgver
+ version="$(grep "^$p " < $RCV_FPV | tail -n 1 | cut -d' ' -f2)"
+ touch toremove/$p-$version
158
+ $XSC show $p 2>/dev/null | grep '^subpackages:' | cut -d: -f2- |
159
+ while read -r sub; do
160
+ touch toremove/$sub-$version
161
+ done
162
163
esac
164
fi
0 commit comments