diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-05-29 14:31:22 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-05-29 14:31:22 -0700 |
commit | 3532d15484ebc37feded387216d716bc1c3533f6 (patch) | |
tree | 5bcc8930539032a62b06cc3ace390cfe9781e735 /modules/assert-h | |
parent | 6951841b81058b0dd883fcdeb2be31d6aa8b8658 (diff) | |
download | gnulib-3532d15484ebc37feded387216d716bc1c3533f6.tar.gz |
* modules/assert-h (assert.h): Substitute the symbol-prefix more consistently.
Diffstat (limited to 'modules/assert-h')
-rw-r--r-- | modules/assert-h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/assert-h b/modules/assert-h index f7eb48244e..85d6fc8445 100644 --- a/modules/assert-h +++ b/modules/assert-h @@ -26,10 +26,10 @@ assert.h: assert.in.h verify.h $(top_builddir)/config.status -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_ASSERT_H''@|$(NEXT_ASSERT_H)|g' \ < $(srcdir)/assert.in.h && \ - sed -e 's|_GL_VERIFY_H|_${gl_include_guard_prefix}_STATIC_ASSERT_H|g' \ - -e '/@assert.h omit start@/,/@assert.h omit end@/d' \ + sed -e '/@assert.h omit start@/,/@assert.h omit end@/d' \ -e 's|_gl_verify|_gl_static_assert|g' \ -e 's|_GL_VERIFY|_GL_STATIC_ASSERT|g' \ + -e 's|_GL\(_STATIC_ASSERT_H\)|_${gl_include_guard_prefix}\1|g' \ < $(srcdir)/verify.h; \ } > $@-t && \ mv $@-t $@ |