gnu: timescaledb: Do not embed running kernel version.
* gnu/packages/databases.scm (timescaledb)[arguments]: Add 'remove-kernel-version phase.
This commit is contained in:
parent
ce6d8ca443
commit
ae1d8d6a6f
1 changed files with 7 additions and 0 deletions
|
@ -1345,6 +1345,13 @@ pictures, sounds, or video.")
|
||||||
"src/loader/CMakeLists.txt")
|
"src/loader/CMakeLists.txt")
|
||||||
(("\\$\\{PG_PKGLIBDIR\\}")
|
(("\\$\\{PG_PKGLIBDIR\\}")
|
||||||
(string-append #$output "/lib")))))
|
(string-append #$output "/lib")))))
|
||||||
|
(add-after 'unpack 'remove-kernel-version
|
||||||
|
;; Do not embed the running kernel version for reproducible
|
||||||
|
;; builds
|
||||||
|
(lambda _
|
||||||
|
(substitute* "src/config.h.in"
|
||||||
|
(("BUILD_OS_VERSION ..CMAKE_SYSTEM_VERSION.")
|
||||||
|
"BUILD_OS_VERSION \""))))
|
||||||
;; Run the tests after install to make it easier to create the
|
;; Run the tests after install to make it easier to create the
|
||||||
;; required PostgreSQL+TimescaleDB filesystem union.
|
;; required PostgreSQL+TimescaleDB filesystem union.
|
||||||
(delete 'check)
|
(delete 'check)
|
||||||
|
|
Reference in a new issue