Hello, Sorry for that, a little bug introduced when removing the CPP related stuff.
Regards, Christophe.
From 210c1aed2727e5d40b4dde95ddd512c0cff38cbe Mon Sep 17 00:00:00 2001 From: Christophe CURIS <[email protected]> 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 f73e6cc..f34fcd6 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)" */' >> $@; \ -- 1.7.10.4
