#!/bin/sh

for qt5core in `find /usr/lib -maxdepth 1 -type f -name 'libQt5Core.so.*'`; do
	strip --remove-section=.note.ABI-tag ${qt5core}
done
