diff options
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -678,6 +678,12 @@ postcheck() { find "$dir" -name '*.la' -type f -delete fi + # ensure .pc files are in /usr/lib not /lib + if [ -e "$dir"/lib/pkgconfig ]; then + error "Found /lib/pkgconfig - needs to be moved to /usr/lib" + return 1 + fi + # look for /usr/lib/charset.alias if [ -e "$dir"/usr/lib/charset.alias ] \ && ! options_has "charset.alias"; then |