diff options
author | Alan Conway <aconway@apache.org> | 2007-12-04 22:33:34 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-12-04 22:33:34 +0000 |
commit | d83cbdc60dc6c76b0b6de0a11a603f5517f6e65b (patch) | |
tree | 744d1bb8b74bc79895a3b16c9e784932690cda32 /cpp/rubygen | |
parent | 48ba374fde6ee32b601f75f285a303b5f6b73594 (diff) | |
download | qpid-python-d83cbdc60dc6c76b0b6de0a11a603f5517f6e65b.tar.gz |
examples/Makefile.am:
- installcheck target builds installed examples.
- Automatically run by rpmbuild and distcheck targets.
rubygen/generate: fixed packaging error in rubygen.mk
src/Makefile.am: fixed packaging error.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@601125 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/rubygen')
-rwxr-xr-x | cpp/rubygen/generate | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/rubygen/generate b/cpp/rubygen/generate index dba39dbf80..94b194aaa4 100755 --- a/cpp/rubygen/generate +++ b/cpp/rubygen/generate @@ -57,10 +57,10 @@ rgen_srcs=#{make_continue rgen_srcs} # Header file install rules. EOS - ["framing", "client", "broker"].each { |ns| + ["framing", "client/no_keyword","client", "broker"].each { |ns| dir="qpid/#{ns}" dir_ = dir.tr("/", "_") - regex=%r|#{dir}/.+\.h$| + regex=%r|#{dir}/[^/]+\.h$| out << <<EOS #{dir_}dir = $(includedir)/#{dir} dist_#{dir_}_HEADERS = #{make_continue rgen_srcs.grep(regex)} |