diff options
author | Alan Conway <aconway@apache.org> | 2013-05-02 21:47:13 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2013-05-02 21:47:13 +0000 |
commit | ba9f80714ae4870c01b450b4f89cfa87d51a6827 (patch) | |
tree | f66a443236e4a7886f7e8ca2e449d52c7d1766ec /qpid/cpp/configure.ac | |
parent | 276e15f7b9baa99372f290f52f40bda2b9c5e5b7 (diff) | |
download | qpid-python-ba9f80714ae4870c01b450b4f89cfa87d51a6827.tar.gz |
QPID-4798: Fix up c++ code generation to use stripped spec files.
The stripped specs have no <doc> elements, this was tripping up the code
generator. Fixed the generator to process <doc> elements if they are present but
to carry on without them if they are not.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1478582 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/configure.ac')
-rw-r--r-- | qpid/cpp/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/configure.ac b/qpid/cpp/configure.ac index 1523af81af..2ced4b7577 100644 --- a/qpid/cpp/configure.ac +++ b/qpid/cpp/configure.ac @@ -247,7 +247,7 @@ fi AM_CONDITIONAL([HAVE_PERL_DEVEL], [test -n "$PERL" && test -n "$SWIG" && test -n "$PERL_INC"]) specdir=`pwd`/$srcdir/../specs -AMQP_FINAL_XML=$specdir/amqp.0-10-qpid-errata.xml +AMQP_FINAL_XML=$specdir/amqp.0-10-qpid-errata.stripped.xml AC_SUBST(AMQP_FINAL_XML) AM_CONDITIONAL([GENERATE], [test -f $AMQP_FINAL_XML]) test -f $AMQP_FINAL_XML -a -z "$RUBY" && AC_MSG_ERROR([Missing ruby installation (try "yum install ruby").]) |