summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-04-16 18:22:40 +0200
committerJim Meyering <meyering@redhat.com>2012-04-16 18:22:40 +0200
commit5a206b3d9b45550b1c4a928cd51deaf1438cb4c8 (patch)
treeeabd6d578f6c129048a625be95309b5474f015c2 /modules
parent45fb479c48453d8b4caaf3196298fde71b039b63 (diff)
downloadgnulib-5a206b3d9b45550b1c4a928cd51deaf1438cb4c8.tar.gz
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.
Diffstat (limited to 'modules')
-rw-r--r--modules/configmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/configmake b/modules/configmake
index 46c0fccccc..845e0f40da 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