diff options
-rw-r--r-- | hare.scm | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -125,7 +125,7 @@ (synopsis "Bootstrapping compiler for Hare") (description "This package provides @code{harec}, the Hare language's bootstrap written in C. Currently, the self-hosting @code{harec} rewrite is -incomplete, so this is used as the default compiler in the build driver." +incomplete, so this is used as the default compiler in the build driver.") (home-page "https://git.sr.ht/~sircmpwn/harec") (license license:gpl3)))) @@ -152,7 +152,6 @@ incomplete, so this is used as the default compiler in the build driver." #:make-flags #~(list "HARECACHE=./cache" (string-append "PREFIX=" #$output)) #:phases #~(modify-phases %standard-phases - (delete 'configure) (add-before 'configure 'configure-make (lambda _ (substitute* @@ -181,7 +180,9 @@ incomplete, so this is used as the default compiler in the build driver." (("\"qbe\"") (string-append "\"" #$qbe-master "/bin/qbe" "\"")) (("\"harec\"") - (string-append "\"" #$harec "/bin/harec" "\"")))))))) + (string-append "\"" #$harec "/bin/harec" "\""))) + )) + (delete 'configure)))) (synopsis "Hare build driver") (description "Hare is a systems programming language designed to be simple, stable, and robust. Hare uses a static type system, manual memory |