From: Eric Blake Date: Mon, 28 Aug 2006 16:01:30 +0000 (+0000) Subject: * modules/inttypes (Depends-on): Fix sed error when inttypes.h X-Git-Tag: cvs-readonly~1969 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=6b8d9670835bff5e07a589bfc14941b2bce9e157;p=gnulib.git * modules/inttypes (Depends-on): Fix sed error when inttypes.h needs wrapper. --- diff --git a/ChangeLog b/ChangeLog index cb0d221bb..cce0923a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-28 Eric Blake + + * modules/inttypes (Depends-on): Fix sed error when inttypes.h + needs wrapper. + 2006-08-27 Bruno Haible * gnulib-tool: New option --makefile-name. @@ -261,7 +266,7 @@ Reported by Martin Lambers . 2006-08-21 Mark D. Baushke - Bruno Haible + Bruno Haible * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2 /bin/sh understanding of '!' conditional negation. diff --git a/modules/inttypes b/modules/inttypes index 75c4e04e2..8c72cb668 100644 --- a/modules/inttypes +++ b/modules/inttypes @@ -21,7 +21,7 @@ EXTRA_DIST += inttypes_.h # doesn't have one that works with the given compiler. inttypes.h: inttypes_.h sed -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ - -e 's/@''ABSOLUTE_INTTYPES_H''@/$(ABSOLUTE_INTTYPES_H)/g' \ + -e 's|@''ABSOLUTE_INTTYPES_H''@|$(ABSOLUTE_INTTYPES_H)|g' \ -e 's/@''PRI_MACROS_BROKEN''@/$(PRI_MACROS_BROKEN)/g' \ -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \ -e 's/@''PRIPTR_PREFIX''@/$(PRIPTR_PREFIX)/g' \