diff options
author | Mark H Weaver <mhw@netris.org> | 2015-05-31 21:18:54 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-05-31 21:18:54 -0400 |
commit | 20a946664da76e53a1336c10ead87f68b6f71001 (patch) | |
tree | 3501ab550cabfe8cd986fe94e9ce2dddfcfacef7 | |
parent | 7ce3224247d3acd559841f23d1b4b49d073b15f5 (diff) | |
download | patches-20a946664da76e53a1336c10ead87f68b6f71001.tar patches-20a946664da76e53a1336c10ead87f68b6f71001.tar.gz |
gnu: flex: Fix native-inputs field.
This is a followup to ba42199eb3 and dedaf76f66.
* gnu/packages/flex.scm (flex)[native-inputs]: Add another layer of
parentheses.
-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 a4362384e1..7988e930e7 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") |