Just rm libpcap add re-extract instead of cleaning

It's faster.
unstable
James Lee 2012-02-01 10:59:06 -07:00
parent 36e37e04fb
commit 10bd708a69
1 changed files with 5 additions and 1 deletions

View File

@ -128,7 +128,11 @@ clean:
(cd $(workspace) && make clean)
clean-pcap:
(cd tmp/libpcap-1.1.1/ && make clean)
#(cd tmp/libpcap-1.1.1/ && make clean)
# This avoids the pcap target trying to patch the same file more than once.
# It's a pretty small tar, so untar'ing goes pretty quickly anyway, in
# contrast to openssl.
rm -r tmp/libpcap-1.1.1 || true
clean-ssl:
(cd tmp/openssl-0.9.8o/ && make clean)