# HG changeset patch # User Christophe Lincoln # Date 1306477756 -7200 # Node ID a307819243f5542c84d01a44d4824a46e15bdee6 # Parent 4504f2aeb11e055156c704d7c30462e78df6ec3a tor: fix receipt (also need CONFIGURE_ARGS at first) diff -r 4504f2aeb11e -r a307819243f5 tor/receipt --- a/tor/receipt Fri May 27 02:12:15 2011 +0000 +++ b/tor/receipt Fri May 27 08:29:16 2011 +0200 @@ -9,15 +9,14 @@ WEB_SITE="http://www.torproject.org/" WGET_URL="https://www.torproject.org/dist/$TARBALL" -DEPENDS="libevent libssl zlib" -BUILD_DEPENDS="wget libevent-dev openssl-dev zlib-dev " +DEPENDS="libevent libssl" +BUILD_DEPENDS="wget libevent-dev openssl-dev" # Rules to configure and make the package. compile_rules() { cd $src - ./configure --sysconfdir=/etc && - $CONFIGURE_ARGS && + ./configure $CONFIGURE_ARGS --sysconfdir=/etc && make && make install }