build-system/julia: Fix syntax error.

* guix/build-system/julia.scm: Fix invalid module reference.
This commit is contained in:
Ricardo Wurmus 2019-09-04 23:56:24 +02:00
parent 35d4862260
commit 458b07ebe0
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -17,7 +17,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (guix build-system julia) (define-module (guix build-system julia)
#:use-module ((guix build julia-build-system)) #:use-module (guix build julia-build-system)
#:use-module (gnu packages julia) #:use-module (gnu packages julia)
#:use-module (guix store) #:use-module (guix store)
#:use-module (guix utils) #:use-module (guix utils)