xbps-src: move wrappers to common/wrappers.

This commit is contained in:
Juan RP 2015-04-21 10:48:30 +02:00
parent 62a643d5c7
commit 0be33d385a
3 changed files with 2 additions and 3 deletions

View file

@ -80,9 +80,8 @@ _EOF
}
install_wrappers() {
for f in install ldconfig; do
install -m0755 ${XBPS_COMMONDIR}/hooks/pre-configure/${f}-wrapper \
${XBPS_WRAPPERDIR}/${f}
for f in ${XBPS_COMMONDIR}/wrappers/*.sh; do
install -m0755 ${f} ${XBPS_WRAPPERDIR}/$(basename ${f%.sh})
done
}