diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-10-03 23:04:32 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-03 23:04:32 +0200 |
commit | ef1f9acf470e1871395daf18ce5d1c58d87f2ab0 (patch) | |
tree | 70ca22e8a869f6caa16b3668ff3f7168d1a092b9 /gnu/packages | |
parent | 7d99f015acb2611bca9f42f2d04cae68ef52aba3 (diff) | |
download | patches-ef1f9acf470e1871395daf18ce5d1c58d87f2ab0.tar patches-ef1f9acf470e1871395daf18ce5d1c58d87f2ab0.tar.gz |
gnu: azr3: Fix build.
Fixes <https://bugs.gnu.org/32698>.
* gnu/packages/audio.scm (azr3)[arguments]: Add build phase to reset timestamp
of man page source.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/audio.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 8f100ce7a3..95cc2ed68c 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -449,7 +449,14 @@ tools.") "CXXFLAGS=-std=gnu++11" "CFLAGS=-std=gnu++11" (string-append "prefix=" %output) - (string-append "pkgdatadir=" %output "/share/azr3-jack")))) + (string-append "pkgdatadir=" %output "/share/azr3-jack")) + #:phases + (modify-phases %standard-phases + (add-before 'install 'fix-timestamp + (lambda _ + (let ((early-1980 315619200)) ; 1980-01-02 UTC + (utime "azr3.1" early-1980 early-1980)) + #t))))) (inputs `(("gtkmm" ,gtkmm-2) ("lvtk" ,lvtk) |