diff options
Diffstat (limited to 'source/d/subversion/subversion.SlackBuild')
-rwxr-xr-x | source/d/subversion/subversion.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/source/d/subversion/subversion.SlackBuild b/source/d/subversion/subversion.SlackBuild index 27f52fd8..114b1197 100755 --- a/source/d/subversion/subversion.SlackBuild +++ b/source/d/subversion/subversion.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009, 2010, 2011 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010, 2011, 2012 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -79,16 +79,20 @@ CFLAGS="$SLKCFLAGS" \ --disable-static \ --with-apr=/usr \ --with-apr-util=/usr \ - --with-apxs=/usr/sbin/apxs \ + --with-apxs=/usr/bin/apxs \ --with-neon=/usr \ --with-zlib=/usr \ --with-pic \ --with-ssl \ - --with-kwallet \ --build=$ARCH-slackware-linux +# Not currently compiling with gcc-4.7.1, but we'll try it again later: +# --with-kwallet \ +# + make $NUMJOBS || make || exit 1 make install DESTDIR=$PKG || exit 1 +make install-tools DESTDIR=$PKG || exit 1 make install-docs DESTDIR=$PKG || exit 1 # Install python bindings |