diff options
author | Manolis Ragkousis <manolis837@gmail.com> | 2015-05-21 17:56:45 +0300 |
---|---|---|
committer | Manolis Ragkousis <manolis837@gmail.com> | 2015-05-21 18:00:37 +0300 |
commit | dedaf76f662eedfe34a3753666c536bfe876bb29 (patch) | |
tree | 94294009774b30ae2d84168fcfc129a9fb00690b /gnu/packages/flex.scm | |
parent | ba42199eb34d6598d8639528250e460aa18c3fc1 (diff) | |
download | guix-dedaf76f662eedfe34a3753666c536bfe876bb29.tar guix-dedaf76f662eedfe34a3753666c536bfe876bb29.tar.gz |
gnu: flex: Add missing quasiquote.
* gnu/packages/flex.scm (flex): Add missing quasiquote at native-inputs.
Diffstat (limited to 'gnu/packages/flex.scm')
-rw-r--r-- | gnu/packages/flex.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/flex.scm b/gnu/packages/flex.scm index 5b86a8dbdd..a4362384e1 100644 --- a/gnu/packages/flex.scm +++ b/gnu/packages/flex.scm @@ -61,7 +61,7 @@ `(("bison" ,bison-for-tests) ("indent" ,indent)))) ;; m4 is not present in PATH when cross-building - (native-inputs ("m4" ,m4)) + (native-inputs `("m4" ,m4)) (propagated-inputs `(("m4" ,m4))) (home-page "http://flex.sourceforge.net/") (synopsis "Fast lexical analyser generator") |