From 35a2ed24ec0e2fbf968605c31c9554faf1cd4fa9 Mon Sep 17 00:00:00 2001 From: Christophe CURIS Date: Sun, 15 Jul 2012 19:12:58 +0200 Subject: [PATCH] Fixed wrong re-generation of 'config-paths.h' file There was a slight error in the generation of this this which led it to grow in size everytime the Makefile is regenerated. --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index f73e6cc3..f34fcd68 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,6 +10,8 @@ config.h: config-paths.h config-paths.h: Makefile @echo "Generating $@" + @echo '/* this is a generated file - do not edit */' > $@ + @echo '' >> $@ @echo '/* gettext domain used for menu translations */' >> $@ @if test -z "$(menutextdomain)"; then \ echo '/* #undef MENU_TEXTDOMAIN "$(menutextdomain)" */' >> $@; \