diff options
author | Mike Gerwitz <gerwitzm@lovullo.com> | 2017-02-03 16:50:19 -0500 |
---|---|---|
committer | Mike Gerwitz <gerwitzm@lovullo.com> | 2017-02-06 08:57:43 -0500 |
commit | 25701c747ba658493d5efd452425dc35da43e028 (patch) | |
tree | a189cf8060a14a2078ea7f3b92febcd08c4edbe7 | |
parent | 9c4755407a8eb0c6e9b36305185b8e350b507d05 (diff) | |
download | liza-25701c747ba658493d5efd452425dc35da43e028.tar.gz liza-25701c747ba658493d5efd452425dc35da43e028.tar.bz2 liza-25701c747ba658493d5efd452425dc35da43e028.zip |
configure.ac: fix harmony destructuring flag
:x
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 82525e9..c5f0700 100644 --- a/configure.ac +++ b/configure.ac @@ -38,7 +38,7 @@ test -n "$NODE" || AC_MSG_ERROR([missing Node.js]) AC_MSG_CHECKING([node --harmony_destructuring]) AS_IF([node --harmony_destructuring >/dev/null 2>/dev/null], [AC_MSG_RESULT(available) - AC_SUBST([NODE_DESTRUCTURE], [--harmony-destructuring])], + AC_SUBST([NODE_DESTRUCTURE], [--harmony_destructuring])], [AC_MSG_RESULT(no)]) # generate files from their *.in counterparts |