changeset 6840:9c31f76c1acd

Fix the value of FULL_...
author Bruno Haible <bruno@clisp.org>
date Mon, 19 Jun 2006 11:27:00 +0000
parents f46c3b1bd633
children b2c0fe3ad032
files m4/ChangeLog m4/stdint.m4
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/m4/ChangeLog
+++ b/m4/ChangeLog
@@ -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
--- a/m4/stdint.m4
+++ b/m4/stdint.m4
@@ -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 @@
   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 @@
   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