diff options
author | Alexander Kochetkov <al.kochet@gmail.com> | 2017-09-11 13:45:01 +0300 |
---|---|---|
committer | Ralph Giles <giles@thaumas.net> | 2017-09-11 09:18:54 -0700 |
commit | ec29ffd94407864e565956e1fa0f834c43502508 (patch) | |
tree | 18d2268f72880d39ae8a07d1da96f94f8c09de54 /configure.ac | |
parent | e2cdf9b98f8ebb814c7b8c23c6f793715719d033 (diff) | |
download | opus-ec29ffd94407864e565956e1fa0f834c43502508.tar.gz |
Fix typo with NE10 prefix
Prefix passed using '--with-NE10=PFX' not used as NE10 include path.
Signed-off-by: Alexander Kochetkov <al.kochet@gmail.com>
Signed-off-by: Ralph Giles <giles@thaumas.net>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5ffa2d38..96b76d99 100644 --- a/configure.ac +++ b/configure.ac @@ -414,7 +414,7 @@ AC_DEFUN([OPUS_PATH_NE10], NE10_CFLAGS="-I$NE10_includes" elif test "x$NE10_prefix" = "xno" || test "x$NE10_prefix" = "xyes" ; then NE10_CFLAGS="" - elif test "x$ogg_prefix" != "x" ; then + elif test "x$NE10_prefix" != "x" ; then NE10_CFLAGS="-I$NE10_prefix/include" elif test "x$prefix" != "xNONE"; then NE10_CFLAGS="-I$prefix/include" |