]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
configure: Fix checking for yasm compability 5588/head
authorYuan Zhou <yuan.zhou@intel.com>
Mon, 17 Aug 2015 01:52:19 +0000 (09:52 +0800)
committerYuan Zhou <yuan.zhou@intel.com>
Mon, 17 Aug 2015 02:48:14 +0000 (10:48 +0800)
Fix typo when checking yasm

Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
configure.ac

index 473083d9cdd94abc0d44f24e3c45b35d327b6b09..904f804164a0cd0c420257c507bc499713ac139f 100644 (file)
@@ -219,7 +219,7 @@ if test x"$YASM_CHECK" = x"yes"; then
            AC_DEFINE([HAVE_GOOD_YASM_ELF64], [1], [we have a recent yasm and are x86_64])
            with_good_yasm=yes
   
-           if yasm -f elf64 -i src/ceph/src/ceph/src/erasure-code/isa/isa-l/include/ src/erasure-code/isa/isa-l/erasure_code/gf_vect_dot_prod_avx2.asm.s -o /dev/null 2> /dev/null ; then
+           if yasm -f elf64 -i src/erasure-code/isa/isa-l/include/ src/erasure-code/isa/isa-l/erasure_code/gf_vect_dot_prod_avx2.asm.s -o /dev/null 2> /dev/null ; then
               echo 'yasm can also build the isa-l stuff'
               AC_DEFINE([HAVE_BETTER_YASM_ELF64], [1], [yasm can also build the isa-l])
            with_better_yasm=yes