mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Merge remote-tracking branch 'origin/topic/timw/1654-exclude-cmake-dot-git'
* origin/topic/timw/1654-exclude-cmake-dot-git: GH-1654: Exclude the .git directory when installing cmake files
This commit is contained in:
commit
e89a743901
3 changed files with 7 additions and 2 deletions
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
||||||
|
4.2.0-dev.56 | 2021-07-30 08:52:49 -0700
|
||||||
|
|
||||||
|
* GH-1654: Exclude the .git directory when installing cmake files (Tim Wojtulewicz, Corelight)
|
||||||
|
|
||||||
4.2.0-dev.54 | 2021-07-29 13:23:51 -0700
|
4.2.0-dev.54 | 2021-07-29 13:23:51 -0700
|
||||||
|
|
||||||
* GH-1692: Add some safety to ASN's binary_to_int64 to avoid bad shifts (Tim Wojtulewicz, Corelight)
|
* GH-1692: Add some safety to ASN's binary_to_int64 to avoid bad shifts (Tim Wojtulewicz, Corelight)
|
||||||
|
|
|
@ -547,7 +547,8 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/zeek-config.in
|
||||||
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/zeek-config DESTINATION bin)
|
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/zeek-config DESTINATION bin)
|
||||||
|
|
||||||
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/cmake DESTINATION share/zeek
|
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/cmake DESTINATION share/zeek
|
||||||
USE_SOURCE_PERMISSIONS)
|
USE_SOURCE_PERMISSIONS
|
||||||
|
PATTERN ".git" EXCLUDE)
|
||||||
|
|
||||||
# Install wrapper script for Bro-to-Zeek renaming.
|
# Install wrapper script for Bro-to-Zeek renaming.
|
||||||
include(InstallShellScript)
|
include(InstallShellScript)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
4.2.0-dev.54
|
4.2.0-dev.56
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue