Browse Source

fixed AC_MSG_ERROR arg

tags/5.1.0
IOhannes m zmölnig 7 years ago
parent
commit
e796a55694
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      configure.ac

+ 2
- 2
configure.ac View File

@@ -80,8 +80,8 @@ $4])
AC_PROG_CXX(g++ CC c++ cxx)
AM_PROG_AR
AC_PATH_PROG(AR, ar, no)
AS_IF([test "x${AR} = "xno" ], [
AC_MSG_ERROR("Could not find ar - needed to create a library");
AS_IF([test "x${AR}" = "xno" ], [
AC_MSG_ERROR([Could not find ar - needed to create a library])
])

# Initialize libtool


Loading…
Cancel
Save