You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2008/02/12 22:57:37 UTC

svn commit: r627141 - in /incubator/qpid/trunk/qpid/cpp/examples: Makefile.am verify_all

Author: aconway
Date: Tue Feb 12 13:57:36 2008
New Revision: 627141

URL: http://svn.apache.org/viewvc?rev=627141&view=rev
Log:
Fix verify error in Makefile.am

Modified:
    incubator/qpid/trunk/qpid/cpp/examples/Makefile.am
    incubator/qpid/trunk/qpid/cpp/examples/verify_all

Modified: incubator/qpid/trunk/qpid/cpp/examples/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/examples/Makefile.am?rev=627141&r1=627140&r2=627141&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/examples/Makefile.am (original)
+++ incubator/qpid/trunk/qpid/cpp/examples/Makefile.am Tue Feb 12 13:57:36 2008
@@ -45,6 +45,9 @@
 
 EXTRA_DIST=$(nobase_pkgdata_DATA) $(VERIFY_FILES)
 
+verify: 
+	cp $(top_srcdir)/../bin/verify $@
+
 # Note: we don't use normal automake SUBDIRS because the example
 # makefiles don't understand all the recursive automake targets.
 
@@ -61,7 +64,7 @@
 	cd examples && $(MAKE) CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS) -I../../$(top_srcdir)/src -I../../$(top_srcdir)/src/gen -I../../$(top_builddir)/src/gen -L../../$(top_builddir)/src/.libs -Wl,-rpath,$(abs_top_builddir)/src/.libs" all
 
 # Verify the examples in the buid tree.
-check-local: all-local 
+check-local: all-local verify
 	$(srcdir)/verify_all $(abs_top_srcdir) $(abs_top_builddir)
 
 # TODO:

Modified: incubator/qpid/trunk/qpid/cpp/examples/verify_all
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/examples/verify_all?rev=627141&r1=627140&r2=627141&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/examples/verify_all (original)
+++ incubator/qpid/trunk/qpid/cpp/examples/verify_all Tue Feb 12 13:57:36 2008
@@ -4,7 +4,7 @@
 
 src=$1 ; build=$2
 
-verify=$src/../bin/verify
+verify=./verify
 qpidd=$build/src/qpidd
 cpp=$build/examples/examples
 python=$src/../python