diff options
author | Pádraig Brady <P@draigBrady.com> | 2016-01-13 12:11:39 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2016-01-13 12:11:39 +0000 |
commit | 4ab8704dc0c63a62076155f73439c8e11e9d5b6a (patch) | |
tree | 5e38337cec55ce4e36d02b331633762bb38c2e57 /doc | |
parent | 7ebc4d84c27de8bf2a1d76b6fd1b014af97af132 (diff) | |
download | coreutils-4ab8704dc0c63a62076155f73439c8e11e9d5b6a.tar.xz |
maint: remove temporary doc/constants.texi-t during build
* doc/local.mk (constants.texi): Remove temp file.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/local.mk b/doc/local.mk index dad743c5b..5ba58186f 100644 --- a/doc/local.mk +++ b/doc/local.mk @@ -42,7 +42,7 @@ doc/constants.texi: $(top_srcdir)/src/tail.c $(top_srcdir)/src/shred.c sed -n -e \ 's/.*\(DEFAULT_PASSES\)[ =]* \([0-9]*\).*/@set SHRED_\1 \2/p'\ $(top_srcdir)/src/shred.c; } > $@-t \ - && { cmp $@-t $@ >/dev/null 2>&1 || mv $@-t $@; } + && { cmp $@-t $@ >/dev/null 2>&1 || mv $@-t $@; rm -f $@-t; } MAINTAINERCLEANFILES += doc/constants.texi |