vlc/vlc-2.2 | branch: master | Sebastian Ramacher <[email protected]> | Sun Oct 30 12:20:31 2016 +0100| [ed12d84559ae4be21c3e3fbe220e02bc13cb69c7] | committer: Rémi Denis-Courmont
configure: fix typo in ALTIVEC_CFLAGS assignment This looks like a typo to me and should have been ALTIVEC_CFLAGS instead. Signed-off-by: Rémi Denis-Courmont <[email protected]> (cherry picked from commit 7994ce346dfba741fa0fc535145dfef02e8abda0) > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=ed12d84559ae4be21c3e3fbe220e02bc13cb69c7 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index cb1de25..bad744d 100644 --- a/configure.ac +++ b/configure.ac @@ -1430,7 +1430,7 @@ AS_IF([test "${enable_altivec}" = "yes"], [ CPPFLAGS="${CPPFLAGS} ${ac_cv_c_altivec}" AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, [Define to 1 if C AltiVec extensions are available.]) VLC_ADD_CFLAGS([libvlccore],[${ac_cv_c_altivec}]) - ALTIVEC_CFLAGS="$ALTIVEC_FLAGS ${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}" + ALTIVEC_CFLAGS="$ALTIVEC_CFLAGS ${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}" VLC_ADD_CFLAGS([deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}]) have_altivec="yes" ]) _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
