Skip to content
Snippets Groups Projects
Commit c0dcd37c authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8887: Fixed checkout for qpid >= 0.34

parent 627c94ea
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,12 @@ else ...@@ -13,7 +13,12 @@ else
mkdir -p ~/sources mkdir -p ~/sources
cd ~/sources cd ~/sources
svn export http://svn.apache.org/repos/asf/qpid/proton/tags/$PROTONVERSION/ proton svn export http://svn.apache.org/repos/asf/qpid/proton/tags/$PROTONVERSION/ proton
svn export http://svn.apache.org/repos/asf/qpid/tags/$QPIDVERSION/qpid/ qpid-$QPIDVERSION if test ${QPIDVERSION} ">" "0.32"; then
QPIDTAG=qpid-cpp-$QPIDVERSION
else
QPIDTAG=$QPIDVERSION
fi
svn export http://svn.apache.org/repos/asf/qpid/tags/$QPIDTAG/qpid/ qpid-$QPIDVERSION
fi fi
# build and install proton libraries # build and install proton libraries
cd ~/sources/proton/ cd ~/sources/proton/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment