diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-10-04 14:05:12 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-10-04 14:15:17 +0000 |
commit | f95366002f66244af84491b757eb24c51fb79004 (patch) | |
tree | 4d394e12fbaca5eb3b81408099ebc0f4f083bb81 /abuild.in | |
parent | 9e9e27b1db0fec1f1bea3a015e709f161385eb97 (diff) | |
download | abuild-f95366002f66244af84491b757eb24c51fb79004.tar.gz abuild-f95366002f66244af84491b757eb24c51fb79004.tar.bz2 abuild-f95366002f66244af84491b757eb24c51fb79004.tar.xz abuild-f95366002f66244af84491b757eb24c51fb79004.zip |
abuild: support qt5 mkspecs
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1301,9 +1301,11 @@ default_dev() { for i in usr/include usr/lib/pkgconfig usr/share/aclocal\ usr/share/gettext usr/bin/*-config \ usr/share/vala/vapi usr/share/gir-[0-9]*\ - usr/share/qt/mkspecs \ + usr/share/qt*/mkspecs \ + usr/lib/qt*/mkspecs \ $(find -name include -type d) \ - $(find lib/ usr/ -name '*.[acho]' 2>/dev/null); do + $(find lib/ usr/ -name '*.[acho]' \ + -o -name '*.prl' 2>/dev/null); do if [ -e "$pkgdir/$i" ] || [ -L "$pkgdir/$i" ]; then d="$subpkgdir/${i%/*}" # dirname $i mkdir -p "$d" |