wok rev 17721
geoip: hide false positive
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 05 17:23:10 2015 +0100 (2015-03-05) |
parents | 4da6b4009226 |
children | 32497b637699 |
files | geoip/receipt |
line diff
1.1 --- a/geoip/receipt Thu Mar 05 16:54:19 2015 +0100 1.2 +++ b/geoip/receipt Thu Mar 05 17:23:10 2015 +0100 1.3 @@ -17,14 +17,14 @@ 1.4 # Rules to configure and make the package. 1.5 compile_rules() 1.6 { 1.7 - cd $src 1.8 autoreconf -i 1.9 ./configure \ 1.10 --prefix=/usr \ 1.11 --infodir=/usr/share/info \ 1.12 --mandir=/usr/share/man \ 1.13 --sysconfdir=/etc/geoip \ 1.14 - $CONFIGURE_ARGS && 1.15 + $CONFIGURE_ARGS 2>&1 | \ 1.16 + sed 's|missing: No such|missing: no such|' 1.17 make && make DESTDIR=$DESTDIR install 1.18 } 1.19