[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#38117: [PATCH] gnu: Add helm.
From: |
Ludovic Courtès |
Subject: |
bug#38117: [PATCH] gnu: Add helm. |
Date: |
Tue, 26 Nov 2019 11:14:44 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
Hello,
Alexandros Theodotou <address@hidden> skribis:
> Weird, it used to work (I even installed it and used the plugin!) but
> now I get this too. I would debug it but I have no idea what the error
> means or what to look for, the project seems to get built ok (I can see
> the generated LV2/VST plugins in the build directory).
The ‘changelog.gz’ file and man pages were read-only. I added a phase
like this:
(add-before 'reset-gzip-timestamps 'make-gz-files-writable
(lambda* (#:key outputs #:allow-other-keys)
(for-each make-file-writable
(find-files (string-append (assoc-ref outputs "out"))
".*\\.gz$"))
#t))
Now it’s all right! I will push shortly.
Thanks,
Ludo’.