aboutsummaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2007-07-24 02:12:40 +0000
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2007-07-24 02:12:40 +0000
commit836990fb3966c3f2cc794ca03c11545b213044cc (patch)
tree337be7aa4a2fcffc8b51821c6d0d5efce4d752ad /patches
parent25d329e3cec804b59b4f93ae461ca4fdbf6fd79e (diff)
downloadslackbuilds-836990fb3966c3f2cc794ca03c11545b213044cc.tar.gz
slackbuilds-836990fb3966c3f2cc794ca03c11545b213044cc.tar.bz2
subversion: updated
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1293 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'patches')
-rw-r--r--patches/subversion/subversion.SlackBuild12
1 files changed, 7 insertions, 5 deletions
diff --git a/patches/subversion/subversion.SlackBuild b/patches/subversion/subversion.SlackBuild
index 30ed3c78..1e6a24cb 100644
--- a/patches/subversion/subversion.SlackBuild
+++ b/patches/subversion/subversion.SlackBuild
@@ -76,7 +76,7 @@ if [ "$RTOOL" == "wget" ] && [ ! -f "$SRC_DIR/$SRC" ]; then
wget "$URL" -O "$SRC_DIR/$SRC" || exit $ERROR_WGET
fi
-wget http://svnbook.red-bean.com/nightly/en/svn-book-html.tar.bz2 -O $SRC_DIR/svn-book-html.tar.bz2
+wget http://svnbook.red-bean.com/nightly/en/svn-book-html.tar.bz2 -O $SRC_DIR/svn-book-html.tar.bz2 || exit $ERROR_WGET
chmod 644 $SRC_DIR/svn-book-html.tar.bz2
TMP=$TMP/$PACKAGE
@@ -111,11 +111,13 @@ CFLAGS="$SLKCFLAGS" \
--with-pic \
--with-ssl \
--with-zlib \
- --build=$ARCH-slackware-linux $APXS
+ --build=$ARCH-slackware-linux $APXS || exit $ERROR_CONF
-make -j4 || exit 1
-make install DESTDIR=$PKG
-make install-docs DESTDIR=$PKG
+make -j4 || exit $ERROR_MAKE
+make swig-py || exit $ERROR_MAKE
+make install DESTDIR=$PKG || exit $ERROR_INSTALL
+make install-docs DESTDIR=$PKG || exit $ERROR_INSTALL
+make install-swig-py DESTDIR=$PKG || exit $ERROR_INSTALL
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null