Skip to content
Snippets Groups Projects
Commit c862e717 authored by ian@well-typed.com's avatar ian@well-typed.com
Browse files

Move AC_SUBST([EXTRA_LIBS]) later in configure.ac

I don't think that it matters, but putting it after all the places
that alter EXTRA_LIBS is a little nicer.
parent 6e900d02
No related branches found
No related tags found
No related merge requests found
...@@ -229,7 +229,6 @@ fi ...@@ -229,7 +229,6 @@ fi
# Avoid adding dl if absent or unneeded # Avoid adding dl if absent or unneeded
AC_CHECK_LIB(dl, dlopen, [EXTRA_LIBS="$EXTRA_LIBS dl"]) AC_CHECK_LIB(dl, dlopen, [EXTRA_LIBS="$EXTRA_LIBS dl"])
AC_SUBST([EXTRA_LIBS])
# -{l,}pthread goo # -{l,}pthread goo
AC_CANONICAL_TARGET AC_CANONICAL_TARGET
...@@ -238,6 +237,7 @@ AC_SEARCH_LIBS(sem_close, pthread, ...@@ -238,6 +237,7 @@ AC_SEARCH_LIBS(sem_close, pthread,
[EXTRA_LIBS="$EXTRA_LIBS $ac_lib"], [EXTRA_LIBS="$EXTRA_LIBS $ac_lib"],
[AC_MSG_NOTICE([Not found])]) [AC_MSG_NOTICE([Not found])])
AC_SUBST([EXTRA_LIBS])
AC_CONFIG_FILES([unix.buildinfo]) AC_CONFIG_FILES([unix.buildinfo])
AC_OUTPUT AC_OUTPUT
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment