diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-21 19:04:18 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-21 19:04:18 -0400 |
commit | 67cd422d20ffbd8be04e2a95803ef073b63237d0 (patch) | |
tree | 8b9c4bee052698ede19723535521af481ade49f2 /build-aux | |
parent | f3bbbbc700b285242fde052a19c576389f830fef (diff) |
pull tools/notsd-* changes from notsystemd/master
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/write-ifchanged | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/write-ifchanged b/build-aux/write-ifchanged index 185ceb0039..84dfd6e639 100755 --- a/build-aux/write-ifchanged +++ b/build-aux/write-ifchanged @@ -15,7 +15,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. outfile=$1 -tmpfile="$(dirname "$outfile")/.tmp${outfile##*/}" +tmpfile="$(dirname "$outfile")/.tmp.${outfile##*/}.tmp" cat > "$tmpfile" || exit $? if cmp -s "$tmpfile" "$outfile"; then |