diff --git a/gnu/packages/profiling.scm b/gnu/packages/profiling.scm index 7340b0172..9a2f2a664 100644 --- a/gnu/packages/profiling.scm +++ b/gnu/packages/profiling.scm @@ -182,14 +182,14 @@ efficient event trace data format plus support library.") `(#:phases (modify-phases %standard-phases (add-after 'install 'licence - (lambda _ - (let ((doc (string-append (assoc-ref %outputs "out") "/share/doc"))) - (mkdir-p doc) + (lambda* (#:key outputs #:allow-other-keys) + (let ((doc (string-append (assoc-ref outputs "out") + "/share/doc/opari2"))) (install-file "COPYING" doc) #t)))))) (home-page "http://www.vi-hps.org/projects/score-p") - (synopsis "An OpenMP runtime performance measurement instrumenter") - (description "OPARI2 is a source-to-source instrumentation tool for OpenMP and hybrid -codes. It surrounds OpenMP directives and runtime library calls with calls -to the POMP2 measurement interface.") + (synopsis "OpenMP runtime performance measurement instrumenter") + (description "OPARI2 is a source-to-source instrumentation tool for OpenMP +and hybrid codes. It surrounds OpenMP directives and runtime library calls +with calls to the POMP2 measurement interface.") (license license:bsd-3)))