Commit ea4236d4a6ba695c5feddbd6c14de733c13e6acf

brlcad 2008-05-03T17:21:25

have to quote the AC_MSG_ERROR else the exit code is screwed up

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/m4/gl.m4 b/m4/gl.m4
index 182544d..c117cb5 100644
--- a/m4/gl.m4
+++ b/m4/gl.m4
@@ -34,7 +34,7 @@ else
 fi
 
 CPPFLAGS="$GL_CFLAGS"
-AC_CHECK_HEADER([GL/gl.h], [], [AC_MSG_ERROR(GL/gl.h is needed, please specify its location with --with-gl-inc.  If this still fails, please contact mmagallo@debian.org, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind.)])
+AC_CHECK_HEADER([GL/gl.h], [], [AC_MSG_ERROR([GL/gl.h is needed, please specify its location with --with-gl-inc.  If this still fails, please contact mmagallo@debian.org, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind.])])
 
 AC_MSG_CHECKING([for GL library])
 if test "x$with_gl_lib" != "x" ; then