diff options
Diffstat (limited to 'modules/locale')
-rw-r--r-- | modules/locale | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/locale b/modules/locale index d5c186c0e2..d15d5d3473 100644 --- a/modules/locale +++ b/modules/locale @@ -19,7 +19,8 @@ BUILT_SOURCES += $(LOCALE_H) locale.h: locale.in.h rm -f $@-t $@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's/@''INCLUDE_NEXT''@/$(INCLUDE_NEXT)/g' \ + sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ + -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''NEXT_LOCALE_H''@|$(NEXT_LOCALE_H)|g' \ < $(srcdir)/locale.in.h; \ } > $@-t |