Fix the value of FULL_...
authorBruno Haible <bruno@clisp.org>
Mon, 19 Jun 2006 11:27:00 +0000 (11:27 +0000)
committerBruno Haible <bruno@clisp.org>
Mon, 19 Jun 2006 11:27:00 +0000 (11:27 +0000)
m4/ChangeLog
m4/stdint.m4

index 0989ca8..b0c6278 100644 (file)
@@ -1,3 +1,9 @@
+2006-06-19  Bruno Haible  <bruno@clisp.org>
+
+       * stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
+       and FULL_PATH_INTTYPES_H in angle brackets.
+       Reported by Mark D. Baushke <mdb@gnu.org>.
+
 2006-06-17  Bruno Haible  <bruno@clisp.org>
 
        * stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
index c33e315..55388fa 100644 (file)
@@ -1,4 +1,4 @@
-# stdint.m4 serial 6
+# stdint.m4 serial 7
 dnl Copyright (C) 2001-2002, 2004-2006 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -14,7 +14,7 @@ AC_DEFUN([gl_STDINT_H],
   if test $gl_cv_header_stdint_h = yes; then
     ac_cv_header_stdint_h=yes; dnl Hack for gl_FULL_HEADER_PATH.
     gl_FULL_HEADER_PATH([stdint.h])
-    FULL_PATH_STDINT_H=$gl_cv_full_path_stdint_h
+    FULL_PATH_STDINT_H='<'$gl_cv_full_path_stdint_h'>'
     AC_SUBST([FULL_PATH_STDINT_H])
     HAVE_STDINT_H=1
   else
@@ -27,7 +27,7 @@ AC_DEFUN([gl_STDINT_H],
   if test $gl_cv_header_inttypes_h = yes; then
     ac_cv_header_inttypes_h=yes; dnl Hack for gl_FULL_HEADER_PATH.
     gl_FULL_HEADER_PATH([inttypes.h])
-    FULL_PATH_INTTYPES_H=$gl_cv_full_path_inttypes_h
+    FULL_PATH_INTTYPES_H='<'$gl_cv_full_path_inttypes_h'>'
     AC_SUBST([FULL_PATH_INTTYPES_H])
     HAVE_INTTYPES_H=1
   else