summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-02-18 19:18:25 +0000
committerAlan Conway <aconway@apache.org>2008-02-18 19:18:25 +0000
commit3966d8be198296525a87a6bd88a42c4bb4f20d03 (patch)
tree2f28f646ab81363042fe2049329ba8d794db45dc /cpp
parentaac76b9da472b77e3b41a8ced980ca53e3df48bc (diff)
downloadqpid-python-3966d8be198296525a87a6bd88a42c4bb4f20d03.tar.gz
Fix problem with verify script in ../../bin.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@628846 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/examples/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/examples/Makefile.am b/cpp/examples/Makefile.am
index d633f995a9..df7fe4dfc7 100644
--- a/cpp/examples/Makefile.am
+++ b/cpp/examples/Makefile.am
@@ -46,8 +46,9 @@ EXTRA_DIST=$(nobase_pkgdata_DATA) $(VERIFY_FILES)
force:
+VERIFY_SCRIPT=$(top_srcdir)/../bin/verify
verify: force
- cp $(top_srcdir)/../bin/verify $@
+ if [ -f $(VERIFY_SCRIPT) ] ; then cp $(VERIFY_SCRIPT) $@; fi
# Note: we don't use normal automake SUBDIRS because the example
# makefiles don't understand all the recursive automake targets.