There is a bug in CMakeLists.txt :
configure_file(bin/postinst.in postinst @ONLY)
configure_file(bin/prerm.in prerm @ONLY)
if (NOT HT_COMPONENT_INSTALL)
- file(GLOB CONFS conf/*)
+ file(GLOB CONFS conf/[a-zA-Z0-9]*)
install(FILES ${CONFS} DESTINATION conf)
file(GLOB JARS lib/*.jar lib/*.txt)
install(FILES ${JARS} DESTINATION lib/java)
When there are some hidden files or directories in the directory
'conf/', the following "install" instruct have to install them, too.
But, "install" does not seem to cover this. In my case, there is a
".svn" directory under "conf/", and "install" instruct cannot handle
that. so I modify it :
- file(GLOB CONFS conf/*)
+ file(GLOB CONFS conf/[a-zA-Z0-9]*)
-- kuer
On 8月16日, 上午1时01分, Doug Judd <[email protected]> wrote:
> Hypertable patch release 0.9.2.6 has been released and is now available for
> download athttp://www.hypertable.org/download.html.
>
> NOTE: you may have to hit refresh in your browser to get the correct
> download
>
> Version 0.9.2.6:
> (2009-08-15)
>
> [issue 319] Fixed problem that prevented cell stores from getting
> written to METADATA Files column
> [issue 315] Fixed scanner creation problem on restricted range
> CellStores
> Fixed bug introduced by recent CellStoreScanner changes
> Refactored startup scripts for robustness
> Added support to create binary packages with minimal dependencies
> Added markdown HQL documentation
> Update HQL help text
> Changed stop-servers.sh to invoke 'shutdown' via rsclient
> Also added --no-hyperspace option to rsclient
> Re-named rsclient to ht_rsclient
> Changed Hypertable.Request.Timeout from 5 to 10 minutes
> Output row and column instead of rowkey and columnkey for LDI header
> Translate IP address to 127.0.0.1 when host resolves to 0.0.0.0
> Made sequential-load/run.sh easier to run from command line.
> Check returns of some system() calls to silence some compiler warnings.
> Use objdump to get the correct SONAME for packaging
> Included Capfile.* and removed 3+MB obsolete demo files from packaging
> Added post install scripts to FHSize the directory layout
> Fixed Schema::render_hql_create_table() to not included deleted columns
> and empty AGs
> Cleaned up some noop code recently introduced in CellStoreScanner
> Added TTL and MAX_VERSIONS to CREATE TABLE options
> DESCRIBE TABLE no longer displays IDs by default; Added WITH IDS option
> Updated README for binary packaging
> Refactored init* functions from Config.h into Init.h
> FindSIGAR: search for x86_64 as well as amd64
> Prefer tcmalloc_minimal over tcmalloc
> Added IN_MEMORY and BLOCKSIZE=<n> to CREATE TABLE options
> Fixed bug in HT_DECODE_BYTES32
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Hypertable Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/hypertable-dev?hl=en
-~----------~----~----~----~------~----~------~--~---