Prechádzať zdrojové kódy

configure.ac: fix variable name

Nathalie Furmento 3 rokov pred
rodič
commit
864e1603d6
2 zmenil súbory, kde vykonal 3 pridanie a 2 odobranie
  1. 2 2
      configure.ac
  2. 1 0
      tests/Makefile.am

+ 2 - 2
configure.ac

@@ -3334,8 +3334,8 @@ if test "$enable_julia" = "yes" ; then
    AC_PATH_PROG(juliapath, julia)
    AC_MSG_CHECKING(whether julia is available)
    AC_MSG_RESULT($juliapath)
-   if test ! -x $julia_path ; then
-      AC_MSG_ERROR(Julia compiler '$julia_path' is not valid)
+   if test ! -x $juliapath ; then
+      AC_MSG_ERROR(Julia compiler '$juliapath' is not valid)
       enable_julia=no
    fi
 fi

+ 1 - 0
tests/Makefile.am

@@ -155,6 +155,7 @@ myPROGRAMS +=					\
 	main/bind				\
 	main/mkdtemp				\
 	main/execute_schedule			\
+	main/insert_task_on_worker		\
 	main/insert_task_pack			\
 	main/insert_task_nullcodelet		\
 	main/multithreaded_init			\