From: Jim Meyering Date: Mon, 16 Apr 2012 16:22:40 +0000 (+0200) Subject: configmake: correct minor inconsistency in Makefile rule X-Git-Tag: v0.1~739 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=5a206b3d9b45550b1c4a928cd51deaf1438cb4c8;p=gnulib.git configmake: correct minor inconsistency in Makefile rule * modules/configmake (Makefile.am): All other rules like this one run the final "mv -f ..." in the same backslash-continued command as the one that does everything else. This one put the mv -f ... command on a separate, non-backslash-continued line. Make it like the others. --- diff --git a/ChangeLog b/ChangeLog index ebc9b45b7..8817dab31 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2012-04-16 Jim Meyering + configmake: correct minor inconsistency in Makefile rule + * modules/configmake (Makefile.am): All other rules like this one + run the final "mv -f ..." in the same backslash-continued command + as the one that does everything else. This one put the mv -f ... + command on a separate, non-backslash-continued line. + Make it like the others. + bootstrap: use gnulib's po/Makefile.in.in, not the one from gettext * build-aux/bootstrap: Use gnulib's po/Makefile.in.in, not the one from gettext. Reported by Akim Demaille. diff --git a/modules/configmake b/modules/configmake index 46c0fcccc..845e0f40d 100644 --- a/modules/configmake +++ b/modules/configmake @@ -44,7 +44,7 @@ configmake.h: Makefile echo '#define PKGINCLUDEDIR "$(pkgincludedir)"'; \ echo '#define PKGLIBDIR "$(pkglibdir)"'; \ echo '#define PKGLIBEXECDIR "$(pkglibexecdir)"'; \ - } | sed '/""/d' > $@-t + } | sed '/""/d' > $@-t && \ mv -f $@-t $@ BUILT_SOURCES += configmake.h