diff options
author | Aleksandr Vityazev <[email protected]> | 2023-04-26 20:33:38 +0300 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2023-04-28 21:02:54 +0200 |
commit | 1a93ff9a8b0c64ccb0e365f4e5c199e0ac8b9de6 (patch) | |
tree | 58af79586fde718845c19b4da7049d90c3bf4ae5 | |
parent | 3d2ce30f6b4b505c9680369d118c2aa9f7bacff4 (diff) |
gnu: maven-core-bootstrap: Fix build.
* gnu/packages/maven (maven-core-bootstrap)[arguments]:
Add the'add-sisu-shebang phase after unpack.
Signed-off-by: Ludovic Courtès <[email protected]>
-rw-r--r-- | gnu/packages/maven.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index e57b288779..6c2958fa11 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -1603,6 +1603,10 @@ generally generated from plugin sources using maven-plugin-plugin."))) #:tests? #f #:phases (modify-phases %standard-phases + (add-after 'unpack 'add-sisu-shebang + (lambda _ + (substitute* "sisu.sh" + (("^## T") "#!/bin/sh\n## T")))) (add-before 'configure 'chdir (lambda _ ;; Required for generating components.xml in maven-core |