From: Christophe CURIS Date: Sun, 15 Jul 2012 17:12:58 +0000 (+0200) Subject: Fixed wrong re-generation of 'config-paths.h' file X-Git-Tag: wmaker-0.95.4~135 X-Git-Url: https://repo.or.cz/w/wmaker-crm.git/commitdiff_plain/35a2ed24ec0e2fbf968605c31c9554faf1cd4fa9 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. --- 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)" */' >> $@; \