diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-09-13 21:32:54 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-09-13 21:32:54 +0000 |
commit | 9ce0b3421c0f3bd12ec4efb77e56df87cec319e1 (patch) | |
tree | e43fed68b7a89b4a3307ee6e39cd68395881aade | |
parent | 43f818559273e1266d4a38327f9aed98638aa1b7 (diff) | |
download | slackbuilds-9ce0b3421c0f3bd12ec4efb77e56df87cec319e1.tar.gz slackbuilds-9ce0b3421c0f3bd12ec4efb77e56df87cec319e1.tar.bz2 |
privoxy: small fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@185 370017ae-e619-0410-ac65-c121f96126d4
-rwxr-xr-x | privoxy/privoxy.SlackBuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/privoxy/privoxy.SlackBuild b/privoxy/privoxy.SlackBuild index 3862d17f..61dc346a 100755 --- a/privoxy/privoxy.SlackBuild +++ b/privoxy/privoxy.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash # -# slackbuild script for nano +# slackbuild script for privoxy # by rhatto at riseup.net # @@ -56,12 +56,14 @@ tar xvf$tarflag $SRC_DIR/$SRC cd $PACKAGE-$VERSION-stable if [ -f "$CWD/$PACKAGE-$VERSION.diff" ]; then + # 3.0.3 patch got from + # https://svn.openwrt.org/openwrt/trunk/openwrt/package/privoxy/patches/101-destdir.patch patch -p1 < $CWD/$PACKAGE-$VERSION.diff fi autoheader autoconf -./configure --prefix=/usr --sysconfdir=/etc --libdir=$LIBDIR +./configure --prefix=/usr --sysconfdir=/etc/$PACKAGE --libdir=$LIBDIR make CWD="`pwd`" |